/**
* Template Name: Appland
* Template URL: https://bootstrapmade.com/free-bootstrap-app-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Alfa Slab One", serif;
  --paragraph-font: "Arvo", serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color::#c27ad3; /* Your brand purple */ /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #eb0909; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #eb0909; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f5fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  /* font-family: var(--default-font); */
}
body, p {
  font-family: "Arvo", serif;
}


a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* color: var(--heading-color); */
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
#hero section
--------------------------------------------------------------*/

  /* Hero Section Fullscreen Video Slider */
/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

/* HERO SECTION */
#hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Use viewport height */
  overflow: hidden;
}

/* VIDEO WRAPPER */
.video-slider-wrapper {
  position: absolute;
  inset: 0;
}

/* VIDEO SLIDES */
.video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

/* CENTER TEXT */
.hero-center-text {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

/* TITLE */
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  text-transform: capitalize;
  color: rgb(197, 69, 229);
  font-family: var(--heading-font); /* ✅ clean & scalable */
  font-weight: 800;
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); */
}

.hero-title {
  opacity: 0;
  transform: translateY(30px);
}

.hero-title.animate {
  animation: textReveal 0.8s ease forwards;
}
.video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.video-slide.active {
  display: block;
}
.hero-title.animate {
  animation: heroTextReveal 0.8s ease forwards;
}
.hero-center-text {
  position: relative;
  z-index: 5;
  text-align: center;
}

.video-slider-wrapper {
  position: absolute;
  inset: 0;
}


@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/*--------------------------------------------------------------
# Navbar Section
--------------------------------------------------------------*/
.main-navbar {
  position:absolute;
  top: 0;
  height: 60px;               /* Fixed height for container */
  background-color:rgb(197 69 229); /* Your brand purple */
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 0 30px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 999;
  overflow: visible;
  width: 100%;
}

/* Logo appears larger without affecting navbar height */
.navbar-logo {
  height: 280px;           /* taller logo */
  max-height: none;       /* override inherited limits */
  margin-top: 45px;      /* allow it to visually pop above navbar */
  margin-bottom:0px;
}

/* Menu Styling */
.navmenu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.navmenu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.navmenu a:hover {
  color: #f04e23;
}

.navmenu .dropdown:hover .dropdown-menu,
.navmenu .dropdown:focus .dropdown-menu,
.navmenu .dropdown:active .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  margin-top: 8px;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown-menu li a {
  color: #333;
  font-size: 14px;
  padding: 8px 20px;
  display: block;
}

/* Sticky Navbar Animation (Optional) */
.sticky-nav {
  /* position: fixed !important; */
  top: 0;
  left: 0;
  z-index: 999;
  animation: slideDown 0.4s ease-in-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate hamburger → X when active */
.nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navmenu {
    position: absolute;
    top: 4cap;
    right: 0;
    background: #c27ad3; /* Your brand purple */
    width: 100%;
    text-align: center;
    transform: translateY(-200%);
    transition: all 0.4s ease;
    z-index: 1000;
    flex-direction: column;
    padding: 20px 0;
  }

  .navmenu ul {
    flex-direction: column !important;
  }

  .navmenu ul li {
    margin: 12px 0;
  }

  .nav-toggle:checked ~ .navmenu {
    transform: translateY(0);
  }

  .navmenu a {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
  }

  .main-navbar {
    flex-wrap: wrap;
  }
}



/*--------------------------------------------------------------
# About us Section
--------------------------------------------------------------*/
.about-us{
  background-color:rgb(197 69 229); /* Your brand purple */
}
/* Image Zoom on Hover */
.about-us .zoom-img {
  transition: transform 0.4s ease;
}
.about-us .zoom-img:hover {
  transform: scale(1.05);
}

/* Overlay Zebra Image */
.about-us .overlay-image {
  position: absolute;
  bottom: 98px;
  right: 20px;
  width: 280px;
  height: 250px;
  /* border: 5px solid rgb(197 69 229); */
 

}

/* Animal Count Box */
.about-us .animal-count-box {
  position: absolute;
  bottom: 18px;
  left: -30px;
  background-color: #3fb49a; /* Mint Green */
  width: 180px;
  height: 140px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.about-us .animal-count-box .fs-3{
  color: #6400d6;
  font-size: 44px !important;
  line-height: 1.1;
  margin: 0;
}
/* Counter text (main number) */
 .animal-count-box {
  font-size: 28px;
  text-transform: uppercase;
  color: #6400d6 !important;
  margin-top: 2px; /* Reduced gap */
  line-height: 1;
  font-family:Alfa Slab One,serif ;
  font-weight: 700;
  text-align: center;}


/* AOS animation stays untouched */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-in-out;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}



.features .icon-box {
  display: flex;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details{
  background-color: rgb(197 69 229);
}
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
   font-size: 26px;
   text-align: left;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
  font-size: 20px;
  text-align: justify;

}

/*--------------------------------------------------------------
# Welcome Section
--------------------------------------------------------------*/
  .card-body{
    text-align: center;
  }
  #welcome-zoo .card {
    transition: transform 0.4s ease;
  }

  #welcome-zoo .card:hover {
    transform: translateY(-8px);
  }


/*--------------------------------------------------------------
# Product img Section
--------------------------------------------------------------*/
  .product-img{
    margin-top: 85px;
  }

  .product-box {
   
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* soft modern shadow */
    transition: all 0.3s ease;
    height: 230px;
  }

  .product-box:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }



/*--------------------------------------------------------------
# Product wrapper Section
--------------------------------------------------------------*/
.product-wrapper {
  position: relative;
  padding-bottom: 80px;
}

.product-wrapper .shape-container {
  position: relative;
  height: 250px; /* fixed shape height */
  width: 95%;
  z-index: 0;
}

.product-wrapper .bg-line-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-wrapper .product-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 80%;
  margin-top:190px;
}

.product-wrapper .product-text {
  position: relative;
  z-index: 2;
  margin-top: 180px; /* enough space below the shape */
}

/* Zoom effect on hover */
.product-wrapper .zoom-effect img {
  transition: transform 0.4s ease;
}

.product-wrapper .zoom-effect:hover img {
  transform: scale(1.08);
}






/*--------------------------------------------------------------
#  testimonial Section
--------------------------------------------------------------*/

.testimonial-box {
  max-width: 750px;
  /* background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1); */
  color: white;
}

.testimonial-box .text-orange {
  color:rgb(233, 10, 10);
}

.testimonial-box .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 85px;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color:#c27ad3; /* Your brand purple */
  color: white;
  text-align: center;
}

.contact-section {
  padding: 40px 20px;
}

ap-wrapper {
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 900px;  /* Adjust the max width as needed */
  height: 600px;      /* Increase this value for taller map */
  border: 0;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.address-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 18px;
}

.address-text h2 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
#  footer Section
--------------------------------------------------------------*/
  /* Footer Base */
  #footer {
    background: #0f0f0f;
    color: #ffffff;
    font-size: 15px;
    padding: 60px 0 30px;
    position: relative;
  }

 .footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;  /* ✅ Center logo and text block */
  text-align: center;   /* ✅ Center text below logo */
}

.footer-about img {
  margin-bottom: 10px;
  max-width: 140px;
  height: 100px;
  /* width: 50px; */
}


.footer-contact p {
  margin-bottom: 4px;
  line-height: 1.4;
  color: #fff;
  font-size: 14px;
}



  /* Footer Links */
  .footer-links h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .footer-links ul li {
    padding: 6px 0;
    transition: all 0.3s;
  }

  .footer-links ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links ul li a:hover {
    color:rgb(208, 8, 8);
  }

  .footer-links i {
    margin-right: 6px;
    color:rgb(224, 6, 6);
    font-size: 12px;
  }

  /* Social Icons */
  .social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
  }

  .social-links a:hover {
    background: rgb(208, 8, 8);
    color: #000;
  }

  /* Copyright */
  .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 14px;
    color: #888888;
  }

  .copyright .sitename {
    font-weight: 600;
    color: #ffffff;
  }

  .credits a {
    color: rgb(208, 8, 8);
    text-decoration: none;
  }

  .credits a:hover {
    text-decoration: underline;
  }

  /* Responsive Padding */
  @media (max-width: 768px) {
    .footer-about,
    .footer-links {
      text-align: center;
    }

    .social-links {
      justify-content: center;
    }
  }

/*--------------------------------------------------------------
#  Scoll-top Section
--------------------------------------------------------------*/
  #scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;  /* Left side instead of right */
    z-index: 999;
    width: 50px;
    height: 50px;
    background: rgb(165, 22, 9); /* WhatsApp-like green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  #scroll-top.show {
    opacity: 1;
    visibility: visible;
  }

  #scroll-top:hover {
    background:#c13caf;
    color: #fff;
    transform: translateY(-3px);
  }
/*--------------------------------------------------------------
#  Map Section
--------------------------------------------------------------*/
 .card img {
  border-radius: 20px;
  object-fit: contain;
  width: 100%;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.card {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.card + div h5,
.card + div p {
  color: white !important;
  text-transform: uppercase;
  font-family: serif;
  font-style: bold;
}
.map-wrapper {
  width: 900px;     
  height: 430px;     
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: white; /* prevents pink overlap */
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.address-text h2 {
  margin-bottom: 10px; /* Reduce spacing below heading */
  font: weight 50px;;
}

.address-text p {
  margin-bottom: 4px; /* Reduce gap between lines */
  line-height: 1.3;   /* Tighter line spacing */
  font-size: 16px;
}
/* ✅ RESPONSIVE DESIGN UPDATES */

/* For tablets and smaller laptops */
@media (max-width: 992px) {

  /* Hero Section */
  #hero-slider {
    height: 70vh;
  }
  .hero-title {
    font-size: 10vw;
  }

  /* Navbar */
  .main-navbar {
    flex-direction: column;
    height: 90px;
    padding: 15px;
  }

  .navbar-logo {
    height: 180px;
    margin-top: 10px;
  }

  .navmenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navmenu a {
    font-size: 15px;
    padding: 5px 10px;
  }

  /* About Section */
  .about-us .overlay-image {
    position: static;
    width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .about-us .animal-count-box {
    left: 0;
    bottom: 0;
    width: 150px;
    height: 100px;
    font-size: 20px;
  }

  /* Product section */
  .product-wrapper .product-image {
    width: 90%;
    margin-top: 120px;
  }

  .product-wrapper .product-text {
    margin-top: 100px;
  }

  .product-box {
    height: 200px;
    padding: 20px;
  }

  /* Map */
  .map-wrapper {
    width: 95%;
    height: 380px;
  }

  /* Footer */
  .footer-about img {
    max-width: 80px;
  }

  .footer-links h4 {
    font-size: 14px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* For phones */
@media (max-width: 576px) {

  /* General */
  body {
    font-size: 14px;
  }

  /* Hero Section */
  #hero-slider {
    height: 60vh;
  }
  .hero-title {
    font-size: 12vw;
  }

  /* Navbar */
  .main-navbar {
    flex-direction: column;
    padding: 10px;
  }

  .navbar-logo {
    height: 120px;
    margin: 5px 0;
  }

  .navmenu ul {
    flex-direction: column;
    align-items: center;
  }

  .navmenu a {
    display: block;
    padding: 8px;
    font-size: 14px;
  }

  /* About Us */
  .about-us {
    padding: 30px 15px;
  }

  .about-us .animal-count-box {
    width: 120px;
    height: 90px;
    font-size: 18px;
  }

  /* Products */
  .product-wrapper .product-image {
    width: 100%;
    margin-top: 80px;
  }

  .product-box {
    margin: 10px 0;
  }

  /* Testimonials */
  .testimonial-box {
    width: 90%;
    margin: 0 auto;
  }

  .testimonial-box .swiper-slide {
    margin-top: 40px;
  }

  /* Map */
  .map-wrapper {
    width: 100%;
    height: 320px;
  }

  /* Footer */
  #footer {
    padding: 40px 0 20px;
  }

  .footer-about img {
    max-width: 70px;
  }

  .footer-links h4 {
    font-size: 13px;
  }

  .footer-links ul li a {
    font-size: 12px;
  }
  .footer-links {
    text-align: left;
}

.footer-links ul {
    padding-left: 0;
}

.footer-links ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.footer-links ul li i {
    font-size: 14px;
    line-height: 1;
}


  .social-links a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  /* Scroll Button */
  #scroll-top {
    width: 42px;
    height: 42px;
    font-size: 22px;
    bottom: 20px;
    right: 20px;
  }
}
/* Container for cards - assume .card-wrapper wraps all cards */
.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* spacing between cards */
}

/* Each card default width */
.card-wrapper .card {
  flex: 1 1 calc(25% - 15px); /* 4 per row on desktop, adjust if needed */
}

/* Mobile responsiveness: 2 cards per row */
@media (max-width: 768px) {
  .card-wrapper .card {
    flex: 1 1 calc(50% - 15px); /* 2 per row */
  }
}



