body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #00448f;
  padding: 15px 30px;
}
nav .logo {
  font-weight: bold;
  color: #00b4d8;
  font-size: 1.2rem;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: #00b4d8;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000814, #001d3d);
}
.hero h1 {
  font-size: 2.5rem;
  color: #00b4d8;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #00b4d8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background-color: #0096c7;
}

section {
  padding: 60px 20px;
  text-align: center;
}
h2 {
  font-size: 2rem;
  color: #90e0ef;
  margin-bottom: 20px;
}
  .cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(145deg, #0d1b2a, #000);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #e6f1ff;
  }

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.9);
  }

  .card.featured {
    border: 2px solid #4dafff;
    box-shadow: 0 0 35px rgba(77,175,255,0.9);
    transform: scale(1.05);
  }

  .card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    color: #4dafff;
    text-shadow: 0 0 10px rgba(77,175,255,0.8);
  }

  .card strong {
    display: block;
    margin: 0.5rem 0 1rem 0;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 12px rgba(77,175,255,1);
  }

  .plan-info {
    font-size: 0.95rem;
    color: #a8b8cc;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }

  .card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    text-align: left;
  }

  .card ul li {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #cdd7e3;
    padding-left: 1.5rem;
    position: relative;
  }

  .card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4dafff;
    text-shadow: 0 0 8px rgba(77,175,255,0.9);
  }

  .card ul li:nth-child(5)::before {
    content: "$";
    color: #4dafff;
    text-shadow: 0 0 6px rgba(77,175,255,0.9);
  }

  .card button {
    background: #4dafff;
    color: #000;
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }

  .card button:hover {
    background: #6dbfff;
    box-shadow: 0 0 12px rgba(77,175,255,0.9);
  }
.card h3 {
  color: #00b4d8;
}



.site-footer {
  background: #00448f;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-left, .footer-middle, .footer-right {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  color: ddd;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
  margin: 0 20px 0 0;
}

.footer-middle ul li {
  margin-bottom: 8px;
}

.footer-middle ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-middle ul li a:hover {
  color: #0f40c7;
}

.footer-right h4 {
  margin-bottom: 10px;
  color: #ddd;
}

.social-icons a {
  font-size: 1.5em;
  margin-right: 15px;
  color: #ddd;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #2442e7;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 0.9em;
  color: #bbb;
}

.xxx {
  color:#ddd;
}

/* Hero intro section */
.hero-intro {
  /* full viewport height */
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: url('assets/background.jpg') center center / cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 13, 45, 0.6); /* dark overlay to blend */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: #60a5fa;  /* accent blue */
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

/* Services */
.services {
  background: #0d0d0d;
  color: #e5e7eb;
}

.services h2 {
  color: #60a5fa;
}

.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: #001d3d;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}

/* Featured work */
.featured-work {
  padding: 5rem 2rem;
  background: #111;
  color: #ddd;
  text-align: center;
}

.featured-work h2 {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 3rem;
  text-shadow: 0 0 12px rgba(77,175,255,0.5);
}

/* Grid for multiple featured projects */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Individual Work Item */
.work-item {
  background-color: #111;
  border-radius: 16px;
  overflow: hidden;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

.work-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-info {
  background: #000814;
  padding: 1.5rem;
  color: #fff;
}

.work-info h3 {
  margin-bottom: 8px;
  color: #00d1ff;
  font-size: 1.3rem;
}

.work-info p {
  font-size: 1rem;
  color: #d1d8e0;
  line-height: 1.5;
}


/* About section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #0d1117;
}

.about-content img {
  max-width: 400px;
  border-radius: 12px;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  color: #60a5fa;
}

.about-text p {
  color: #ddd;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* Process / Steps */
.process {
  background: #0d0d0d;
  color: #ddd;
  padding: 4rem 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-steps .step {
  background: #001d3d;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.process-steps .step:hover {
  transform: scale(1.05);
}

.process-steps .step i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #60a5fa;
}

/* FAQ */
.faq {
  padding: 4rem 2rem;
  color: #ddd;
  background: #111827;
}

.faq h2 {
  color: #60a5fa;
}

.faq-item {
  max-width: 800px;
  margin: auto;
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: #fff;
}

.faq-item p {
  color: #ccc;
}

/* Final CTA */
.cta-final {
  padding: 4rem 2rem;
  background: #001d3d;
  text-align: center;
}

.cta-final h2 {
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: #60a5fa;
}

.btn-primary:hover {
  background: #3b82f6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .about {
    flex-direction: column;
  }
}

/* Hamburger container */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.hamburger div {
  position: absolute;      /* position bars on top of each other */
  width: 100%;
  height: 3px;
  background-color: #ddd;
  transition: all 0.4s ease;
  top: 50%;                /* center vertically */
  left: 0;
  transform-origin: center;
}

/* Offset bars initially */
.hamburger div:nth-child(1) { transform: translateY(-8px); }
.hamburger div:nth-child(2) { transform: translateY(0); }
.hamburger div:nth-child(3) { transform: translateY(8px); }

/* When open - full X */
.hamburger.open div:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.open div:nth-child(2) {
  opacity: 0;
}

.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg);
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}




/* === Responsive Nav === */
@media (max-width: 768px) {
  nav {
    position: relative;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #00448f, #60a5fa);
    position: absolute;
    top: 70px;
    right: 10px;
    padding: 10px 0;
    border-radius: 12px;
    z-index: 9999;

    /* Hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s ease;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }

  nav ul.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  nav ul li a {
    padding: 12px 20px;
    color: #d1d8e0;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  nav ul li a:hover {
    background: rgba(10, 61, 98, 0.3);
    transform: translateX(5px);
  }

  .hamburger {
    display: flex;
  }
}

/* === Minimal Scrollbar Styling === */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 61, 98, 0.5) transparent;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(10, 61, 98, 0.5);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(10, 61, 98, 0.8);
}

/* Make images scale */
img {
  max-width: 100%;
  height: auto;
}

/* Contact Page Styles */
.contact-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 255, 0.2), 0 0 40px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.contact-section h2 {
  color: #4da6ff;
  margin-bottom: 1rem;
}

.contact-email {
  color: #4da6ff;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.7);
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 10px #4da6ff, 0 0 20px #000;
  border: 1px solid #4da6ff;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  padding: 1rem;
  background: #4da6ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #4da6ff, 0 0 20px #000;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #005fcc;
  box-shadow: 0 0 20px #4da6ff, 0 0 30px #000;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  padding: 60px 20px;
  justify-items: center;
}

.portfolio-item {
  background-color: #111;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  max-width: 360px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 0.3s;
}

.portfolio-item img:hover {
  transform: scale(1.05);
}

.portfolio-item h3 {
  margin: 15px 0 8px;
  color: #00d1ff;
  font-size: 1.3rem;
}

.project-desc {
  font-size: 0.95rem;
  color: #d1d8e0;
  padding: 0 15px 15px;
  line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #001b44 0%, #0b2a66 100%);
}

.reviews-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 60px;
  text-shadow: 0 0 15px rgba(46, 123, 255, 0.6);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(46, 123, 255, 0.3);
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 350px;
  box-shadow: 0 0 20px rgba(46, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(46, 123, 255, 0.4);
}

.stars {
  font-size: 1.4rem;
  color: #ffcd3c;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: #dce7ff;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-author {
  color: #8ab6ff;
  font-weight: 600;
  margin-top: 5px;
}


/* === Common Questions (FAQ) Page === */
.faq-container {
  max-width: 900px;
  margin: 5rem auto;
  padding: 2.5rem 2rem;
  background: #111;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.2), 0 0 40px rgba(0, 0, 0, 0.6);
}

.faq-container h1 {
  text-align: center;
  color: #4da6ff;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 12px rgba(77,175,255,0.5);
}

.faq-item {
  background: #0a1a2b;
  border: 1px solid rgba(77,175,255,0.3);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(77,175,255,0.4);
}

.faq-item h3 {
  color: #4da6ff;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  text-shadow: 0 0 8px rgba(77,175,255,0.6);
}

.faq-item p {
  color: #d1d8e0;
  font-size: 1rem;
  line-height: 1.7;
}


.back-link {
  display: block;
  text-align: center;
  margin-top: 3rem;
  color: #4da6ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.back-link:hover {
  color: #6dbfff;
  text-shadow: 0 0 10px rgba(77,175,255,0.6);
}

.announcement-bar {
  background: linear-gradient(1.5708rad, #00448f, #00448f);
  color: #fff2f2;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.3s ease;
}

.announcement-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* === Vermont Discount Page === */

.vermont-container {
  max-width: 900px;
  margin: 6rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #0b1220 0%, #101c30 100%);
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(0, 123, 255, 0.25), 0 0 60px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.vermont-container img {
  width: 130px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(77, 175, 255, 0.6));
}

.vermont-container h1 {
  color: #4da6ff;
  font-size: 2.6rem;
  text-shadow: 0 0 12px rgba(77, 175, 255, 0.6);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.vermont-container h2 {
  color: #8fbcff;
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
}

.vermont-container p {
  color: #d1d8e0;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 1.4rem;
}

.discount-banner {
  background: rgba(0, 100, 255, 0.15);
  border: 1px solid rgba(77, 175, 255, 0.5);
  border-radius: 14px;
  padding: 2rem;
  margin-top: 2.5rem;
  box-shadow: 0 0 25px rgba(77, 175, 255, 0.25);
  backdrop-filter: blur(6px);
}

.discount-banner h2 {
  color: #4da6ff;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(77, 175, 255, 0.5);
}

.discount-banner p {
  color: #c9d7f2;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Smooth entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

