/* General Body Styles */
a {
    text-decoration: none;
    color: inherit; /* Keeps the parent's text color */
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
body {
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
  box-sizing: border-box;
  margin: 0;
  padding-top: 93px; /* Adjusted to prevent content from hiding behind fixed header */
}

/* Header & Navbar */
#headerWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hide-header {
  transform: translateY(-100%);
}
.top-border{
  background: #E17D27;
  
  padding:.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar{
  background: #1B7458;
  color: white;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}



.top-bar .icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 5px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: white;
  position: relative;
}

.logo img {
  width: 15rem;
  display: block;

}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1B7458;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding-bottom: 5px;
  transition: border-bottom 0.2s ease;
}

.nav-links li a:hover {
  border-bottom: 3px solid #E17D27;
}

.btn-outline {
  background: #E17D27;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-outline:hover {
  background: #f19442;
}


/* WhatsApp Button */
#whatsapp .wtsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-decoration: none; /* 👈 Add this line */
}

#whatsapp .wtsapp:hover {
  transform: scale(1.1);
}

#whatsapp .wtsapp::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-border 1.5s ease-out infinite;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) scale(1.5);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  body {
    padding-top: 79px; /* Adjust for smaller header */
  }

  .top-bar {
    font-size: 11px;
    padding: 5px 10px;
  }

  .top-bar .icon {
    width: 12px;
    height: 12px;
  }

  .navbar {
    padding: 10px 15px;
  }

  .menu-icon {
    display: block;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    right: -20px;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  }

  .nav-right.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
  }

  .btn-outline {
      margin-top: 20px;
  }

  #whatsapp .wtsapp {
    width: 45px;
    height: 45px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}



/*========Footer section=========*/
        /* General Footer Styling */
.site-footer {
     /* Fallback color */
    background-image: linear-gradient(180deg, #1B7458C7, #EBB789);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    
    z-index: 1; /* This is fine as the container */
    max-width: 100vw;
    margin: 0 auto;
}

/* Faded Background Text - Now on top layer */
.footer-background-text {
    position: absolute;
    top: 70% !important;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    font-size: clamp(6.2rem, 25vw, 25rem);
    font-weight: 600;
    color: rgba(0, 0, 0, 0.2);
    z-index: 100; /* Increased to ensure it's on top */
    pointer-events: none; /* Optional: prevents the text from blocking clicks */
}
        /* Content Container */
        .site-footer .container {
            max-width: 75rem;
            margin: 0 auto;
            padding: 0 1.2rem;
            position: relative;
            z-index: 2;
        }

        .footer-content {
             display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.75rem, 1fr));
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 280px;
        }


        /* Column 1: About & Social */
        .footer-about .footer-logo {
            width: 10rem;
            height: 4rem;
             background-image: url('titleImg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
        }

        .footer-about .footer-tagline {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0px 73px 24px 0;
            text-align: justify;
        }
.footer-title {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 12px 73px 24px 15px;
  text-align: justify;
  color: #1B7458C7;
  font-weight: bold; /* This line makes the text bold */
}
        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1.5px solid #ffffff;
            border-radius: 50%;
            color: #ffffff;
            font-size: 1rem;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #ffffff;
            color: #000000;
        }

        /* Columns 2 & 3: Links & Contact */
        .footer-column h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #ffffff;
        }

        .footer-links ul,
        .footer-contact ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 15px;
        }

        .footer-links a,
        .footer-contact a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #383838;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 16px;
            line-height: 1.6;
        }

        .footer-contact i {
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 5px;
            color: #ffffff;
        }
        .copyright {
  color: #666;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.footer-bottom-unik {
    background-color: #EBB789;
    padding: 20px 5% 30px;
    border-top: 1px solid #363B46;
    text-align: center;
}

.footer-social-icons-unik {
    margin-bottom: 20px;
}

.footer-social-icons-unik a {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons-unik a:hover {
    transform: scale(1.2) translateY(-2px);
    color: #cccccc;
}

.footer-copyright-unik p {
    margin: 0;
    font-size: 0.9rem;
}

        /* --- Mobile Responsiveness (Updated) --- */

        @media (max-width: 768px) {
            .footer-background-text {
                top: 90% !important;
            }

            .site-footer {
                padding: 60px 0 0 0;
               
            }

            .site-footer .container {
                padding: 0 15px;
            }

            .footer-content {
                flex-direction: column;
                gap: 50px;
                text-align: center;
            }

            .footer-column {
                min-width: 100%;
                text-align: center;
            }

            /* Centers the logo and its container */
            .footer-about {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-about .footer-logo {
                margin-bottom: 15px; /* Adjust spacing below the logo */
            }

            .footer-about .footer-tagline {
                font-size: 14px;
                line-height: 1.5;
                margin: 0px 4rem 24px 4rem;
            }
            .footer-title {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0px 73px 24px 73px;
            text-align: justify;
            color: #1B7458C7;
        }

            .social-icons {
                justify-content: center;
                margin-top: 15px;
            }

            .footer-contact li {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }
        }