/* Copy of privacyPolicy.css for Terms and Conditions page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: larger;
  background-color: rgb(163, 160, 160);
  box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4);
}

.logo {
    height: 50px;
    margin-left: 10%;
}

nav {
    margin-right: 10%;
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
margin-top: -11px;
  font-family: 'Segoe UI', 'Roboto', 'Montserrat', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  color: white;
  width: fit-content;
  display: flex;
  list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #007b5e;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: #ffffff;
    margin-right: 10%;
    font-size: 24px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: rgba(28, 28, 28, 0.9);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 80px;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #007b5e;
}

.menu {
  margin-top: -11px;
  font-family: 'Segoe UI', 'Roboto', 'Montserrat', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  color: white;
  width: fit-content;
  display: flex;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.menu .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 36px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b5e;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link svg {
  width: 14px;
  height: 14px;
  fill: #000000;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .item {
  position: relative;
}

.menu .item .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  border-radius: 0 0 16px 16px;
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid #cccccc;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  pointer-events: none;
  list-style: none;
  font-size: 18px;
}

.menu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  border-top: transparent;
  border-color: #007b5e;
}

.menu .item:hover .link {
  color: #ffffff;
  border-radius: 16px 16px 0 0;
}

.menu .item:hover .link::after {
  transform: scaleX(1);
  transform-origin: right;
}

.menu .item:hover .link svg {
  fill: #ffffff;
  transform: rotate(-180deg);
}

.submenu .submenu-item  {
  width: 100%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link {
  display: block;
  padding: 12px 24px;
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
  border-bottom: none;
}

.submenu .submenu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  background-color: #007b5e;
  z-index: -1;
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}

.submenu .submenu-link:hover {
  color: #ffffff;
}

.whatsapp-icon {
    position: fixed;
    bottom: 60px;
    right: 30px;
    text-align: center;
    z-index: 1000;
}

.whatsapp-link {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.note {
    background: #25d366;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 15px 25px;
    text-align: center;
    position: relative;
    max-width: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.note {
    background: linear-gradient(135deg, #25d366, #1eb956);
}

.note::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #1eb956;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.whatsapp-link:hover .note {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1eb956, #25d366);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    margin-top: 10px;
}

.icon img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-link:hover img {
    transform: scale(1.15);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .sidebar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon {
        position: fixed;
        bottom: 26%;
        right: 30px;
        text-align: center;
        z-index: 1000;
    }
    .note {
        font-size: 12px;
        padding: 8px 15px;
        max-width: 150px;
    }
    .icon {
        width: 40px;
        height: 40px;
    }
}

.contact-us {
    background-color: #007b5e;
    color: #fff;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.contact-us h2 {
    margin-bottom: 15px;
}

.contact-us p {
    font-size: large;
    margin-bottom: 15px;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #777;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

footer p {
    margin: 0;
}

.image-section {
    position: relative;
    height: 40vh;
    background: url('https://img.freepik.com/free-photo/abstract-luxury-gradient-blue-background-smooth-dark-blue-with-black-vignette-studio-banner_1258-54587.jpg?ga=GA1.1.1083888277.1742803658&semt=ais_hybrid&w=740') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    border-bottom: 1px solid #e0e0e0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
section.about {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 30px 10px 10px 10px;
}
section.about h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
section.about p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.content-section {
    padding: 40px 20px;
    text-align: left;
    color: #333;
    background: #fff;
    margin: 0 auto 30px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-top: 30px;
}
.about-h2 {
    font-size: 2rem;
    margin-top: 30px;
    color: #057510;
}
.about-p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}
@media (max-width: 768px) {
    .image-section {
        height: 25vh;
    }
    .content-section, .contact-us {
        padding: 20px 5px;
        max-width: 98%;
    }
    section.about h1 {
        font-size: 1.5rem;
    }
    .about-h2 {
        font-size: 1.2rem;
    }
    .about-p {
        font-size: 1rem;
    }
}
