*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  background: #f8f9fa;
  color: #222;
  position: relative;
}

:root{
    --hero-link-color: #000;
    --hero-link-hover-color: blue;
}

/*--Hero Section--*/

/* Base Navigation Styles */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 12%;
    background-color: #fff;
    padding: 16px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Logo */
.top-nav img {
    width: 140px;
    height: auto;
}

/* Navigation Links */
#nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

#nav-links a {
    text-decoration: none;
    color: var(--hero-link-color, #222);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 8px 14px;
    transition: color 0.3s ease;
}

#nav-links a:hover {
    color: var(--hero-link-hover-color, #007bff);
}

/* CTA (Book Now) */
#nav-links .deco {
    border: 2px solid #007bff;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #007bff;
    color: #fff;
    transition: all 0.3s ease;
}

#nav-links .deco:hover {
    background-color: #e0ecff;
    color: #000;
    border-color: #000;
}

/* Hamburger Icon (Mobile only) */
.top-nav .icon {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 975px) {
    /* Structure shift for small screens */
    .top-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
    }

    /* Hamburger visible */
    .top-nav .icon {
        display: block;
    }

    /* Hide links initially */
    #nav-links {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 16px 0;
        transition: max-height 0.3s ease;
    }

    /* Shown state */
    #nav-links.responsive {
        display: flex;
    }

    #nav-links a {
        color: #222;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
    }

    #nav-links a:last-child {
        border-bottom: none;
    }

    /* Book Now button */
    #nav-links .deco {
        margin-top: 8px;
        align-self: center;
    }
}

/* Home Section Layout */
.home {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  overflow: hidden;
  color: white;
}

/* Background + tint layer */
.home-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/services-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

 /*Add the blue tint as a layer on top of the image */
.home-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 130, 0.3);  /*blue tint */
}

/* Heading text */
.overlay-heading {
  position: relative;
  z-index: 3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .home {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .overlay-heading {
    text-align: center;
  }
}

/*--Services Section--*/
.services-section {
  margin-top: 0;
  padding: 40px 5%;
  text-align: center;
  background-color: #b8d6f5;
}

.services-section .heading {
  color: #007bff;
  font-weight: 800;
  font-size: 1rem;
  font-family: Arial;
  border: 1px solid #fff;
  background-color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.services-section h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

.price-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px; /* space between the cards */
    margin-top: 32px;
    flex-wrap: wrap;
}

.price-card {
    width: 350px;
    min-height: 480px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background-color: #fff;
    padding: 28px 24px 24px 24px;
    box-shadow: 0 4px 24px rgba(44,204,113,0.13);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid grey;
}

@media (max-width: 974px) {
  .price-card {
    width: 90%;
    min-height: auto;
    padding: 20px 16px;
    gap: 12px;
  }
}


.price-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px #014288;
    border: 2px solid #007bff;
    z-index: 2;
}

.price-card .icon-circle {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(43, 31, 202, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform 0.2s;
}

.price-card:hover .icon-circle {
    transform: translateY(-8px);
}

.price-card .icon-circle img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.price-card .title {
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}

.price-card .price {
    font-size: 2rem;
    color: #000;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.price-card .per {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.price-card .desc {
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.5;
}

.price-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.price-card .features li {
    font-size: 1.05rem;
    color: #007bff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

#icon {
    color: #fff;
    font-size: 2em;
}

.price-card .features i  {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.1em;
}

.price-btn {
    background-color: rgb(89, 177, 168);
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.price-card:hover .price-btn,
.price-btn:hover {
    background-color: #007bff;
    color: #fff;
}

/*--Bundle Section--*/

.bundle-section {
  margin-top: 60px;
  padding: 40px 5%;
  background-color: #f0f4f8;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin-inline: auto;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.bundle-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #014288;
}

.bundle-card {
  background: white;
   border: 1px solid #ccc;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #38bac4;
}

.bundle-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #014288;
}

.bundle-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bundle-card ul li {
  padding: 6px 0;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 22px;
}

.bundle-card ul li::before {
  content: "\f05d"; /* FontAwesome bullet icon (fa-circle-dot) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 6px;
  color: #38bac4;
  font-size: 0.75rem;
}

.bundle-note {
  background-color: #e9f5ff;
  border: 1px solid #ccc;
  border-left: 6px solid #007bff;
  padding: 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #333;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/*--Additonal Section--*/

.additional-section {
  margin-top: 40px;
  padding: 40px 5%;
  text-align: center;
  background-color: #b8d6f5;
}

.additional-section .heading {
  color: #007bff;
  font-weight: 800;
  font-size: 1rem;
  font-family: Arial;
  border: 1px solid #fff;
  background-color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.additional-section h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
}

.service-list li {
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-list li i {
  font-size: 1.3rem;
  color: #007bff;
  flex-shrink: 0;
}

.service-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.15);
}



/*--Footer Section--*/
footer {
  color: azure;
  font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.foot {
  padding: 80px 10%;
  background: rgb(45, 45, 218);
  color: #efefef;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Columns */
.foot > div {
  flex: 1 1 250px;
  text-align: center;
}

/* Icons */
footer i {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* Section Titles */
.foot div h3 {
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

/* Links */
.col-1 a {
  display: block;
  text-decoration: none;
  color: #efefef;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.col-1 a:hover {
  color: #cfd3ff;
}

/* Center column grows more */
.col-2 {
  flex-grow: 2;
}

/* Form */
form input {
  width: 100%;
  max-width: 400px;
  height: 45px;
  border-radius: 4px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  outline: none;
  border: none;
}

form button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

form button:hover {
  background: #fff;
  color: #2d2dda;
}

/* Footer Bottom Line */
.dev {
  background-color: rgb(45, 45, 218);
  text-align: center;
  padding: 16px 10px;
  font-size: 1rem;
}

.dev a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.dev a:hover {
  color: #cfd3ff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .foot {
    padding: 60px 5%;
    gap: 24px;
  }

  .foot > div {
    text-align: center;
  }

  form input {
    max-width: 100%;
  }

  form button {
    width: 100%;
    max-width: 300px;
  }

  .dev {
    font-size: 0.9rem;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #007bff;
  text-decoration: none;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

.circle-btn:hover {
  background: #005bb5;
  transform: scale(1.05);
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

