/* -------- Global Styles -------- */
body {
  font-family: 'Inter', sans-serif;
  background-color: #08ab52;
  color: #1f2937;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Attractive blurred blobs */
body::before,
body::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
}
/* body::before {
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.08);
  top: -200px;
  left: -200px;
}
body::after {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.07);
  bottom: -150px;
  right: -150px;
} */

/* -------- Container -------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -------- Header -------- */
header {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1150;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav {
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-container img {
  width: 50px;
  height:auto;
  color: #fff;
  margin-right: 0.75rem;
  transition: transform 0.3s ease-in-out;
}
.logo-container:hover img {
  transform: rotate(15deg);
}
.logo-container span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* Desktop Menu */
.desktop-menu {
  display: none;
  align-items: center;
}
.desktop-menu a {
  color: #f0fdf4;
  text-decoration: none;
  margin: 0 1.25rem;
  position: relative;
  font-weight: 500;
}
.desktop-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
.desktop-menu a:hover::after {
  width: 100%;
}
.desktop-menu a:hover {
  color: #fff;
}

/* Auth Buttons */
.auth-buttons-container {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem;
  align-items: center;
}
.login-btn {
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
}
.login-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.demo-btn {
  background-color: #fff;
  color: #078844;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: 0.3s;
}
.demo-btn:hover {
  background-color: #f0fdf4;
}

/* Mobile Menu */
#mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
}
#mobile-menu {
  display: none;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
#mobile-menu a {
  display: block;
  color: #1f2937;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 500;
}
#mobile-menu a:hover {
  background-color: #e5e7eb;
  color: #08ab52;
}
.mobile-auth-links {
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-auth-links .login-btn {
  border: 1px solid #d1d5db;
  color: #1f2937;
}
.mobile-auth-links .demo-btn {
  background-image: linear-gradient(to right, #34d399, #10b981);
  color: white;
}

/* -------- Hero Section -------- */
/* main {
   padding: 4rem 0; 
} */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.hero-text {
  text-align: center;
  color: white;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero-text p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #ecfdf5;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-text button {
  margin-top: 2rem;
  background-color: white;
  color: #15803d;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.hero-text button:hover {
  background-color: #f0fdf4;
  transform: translateY(-3px);
}
.hero-image img {
  border-radius: 1.5rem;
  width: 100%;
  max-width: 32rem;
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation for image */
.hero-image img:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.05) saturate(1.1);
}

/* -------- Responsive -------- */
@media (min-width: 768px) {
  .desktop-menu { display: flex; }
  .auth-buttons-container { display: flex; gap: 0.5rem; }
  #mobile-menu-button { display: none; }

  .hero-section {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-text {
    width: 70%;
    text-align: left;
  }
  .hero-text h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
  .hero-image {
    width: 50%;
  }
  .hero-image img {
    max-width: 100%;
  }
}
/* -------- Header -------- */

/* From Uiverse.io by cssbuttons-io */ 
.btn {
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 6em;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: black;
  background-color: white;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn::after {
  background-color: #fff;
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* -------- WhatsApp Section -------- */
.text-content {
  text-align: center;
  color: white;
}

.text-content h1 {
  font-size: 10rem;
  font-weight: 800;
  line-height: 0.2;
  margin-top: 10px;
  margin: auto;
}
.subcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* spacing between elements */
  /* padding: 5px 10px; */
  flex-wrap: wrap; /* ensures wrapping on smaller screens */
  margin-top: -100px;
  /* font-family: 'Times New Roman', Times, serif; */
}

  /* Center text */
        .subtext {
            width: 1000px;
            text-align: center;
            animation: fadeInUp 1.2s ease both;
            color: #fff; /* white text for better contrast on green background */
        }

        .subtext h2 {
                   
            margin: auto;
            font-size: 50px;
            font-weight: 1000;
            transition: color 0.3s ease;
        }

        /* .subtext h2:hover {
           
            text-decoration: underline white 2px;
            color: #25D366; WhatsApp accent green
        } */

        .subtext p {
            font-size: 20px;
            line-height: 1.7;
            margin-bottom: 25px;
            color: #f0fdf4; /* light greenish-white for readability */
        }

.subimag1 img {
  border-radius: 1.5rem;
  width: 300px;
  max-width: 32rem;

  /* max-width: 32rem; */
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation for image */
.subimag1 img:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.05) saturate(1.1);
}

.subimag2 img {
  border-radius: 1.5rem;
  width: 100%;
  max-width: 32rem;
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation for image */
.subimag1 img:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.05) saturate(1.1);
}


@media (min-width: 768px) {
  .text-content h1 {
    font-size: 12rem;
    line-height: 1;
  }
}


/* mark */

.mark {
  text-align: center;
  color: white;
  /* margin: 50px 0; */
  font-size: 50px;
  margin-top: -50px;
  margin-bottom: -100px;
}

/* -------- Pricing Section -------- */



 :root {
            --color-primary: #10B981; /* Emerald-500 */
            --color-primary-dark: #059669; /* Emerald-600 */
            --color-gray-50: #f9fafb;
            --color-gray-200: #e5e7eb;
            --color-gray-500: #6b7281;
            --color-gray-600: #4b5563;
            --color-gray-800: #1f2937;
            --color-gray-900: #11182c;
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            
           
            color: var(--color-gray-800);
            line-height: 1.6;
        }

        /* priContainer */
        .pricontainer {
            width: 100%;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding: 6rem 1rem;
        }

        @media (min-width: 640px) {
            .pricontainer {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
        }

        /* Header Section */
        .header-section {
            text-align: center;
            max-width: 56rem;
            margin: 0 auto;
            
        }

        .header-section h1 {
            font-size: 2.25rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            color: white;
        }

        @media (min-width: 768px) {
            .header-section h1 {
                font-size: 3rem;
            }
        }

        .header-section p {
            margin-top: 1rem;
            font-size: 1.125rem;
           color: white;
        }
        
        /* Toggle Switch */
        .toggle-pricontainer {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            margin-bottom: 2.5rem;
        }

        .toggle-switch {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-around;
            width: 300px;
            height: 50px;
            background-color: var(--color-gray-200);
            border-radius: 9999px;
            padding: 4px;
            transition: background-color 0.3s ease;
        }

        .toggle-switch-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: calc((100% - 8px) / 3);
            height: calc(100% - 8px);
            background-color: var(--color-primary);
            border-radius: 9999px;
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            z-index: 1;
        }

        .toggle-switch-option {
            flex: 1;
            text-align: center;
            font-weight: 600;
            color: var(--color-gray-800);
            position: relative;
            z-index: 2;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .toggle-switch-option.active {
            color: white;
        }
        
        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 72rem;
            margin: 0 auto;
        }

        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Pricing Card */
        .pricing-card {
            background-color: white;
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
            padding: 2rem;
            border: 1px solid var(--color-gray-200);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.popular {
            border: 2px solid var(--color-primary);
            position: relative;
            overflow: hidden;
        }

        .popular-badge {
            position: absolute;
            top: 10px;
            right: -35px;
            background-color: var(--color-primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.375rem 2.5rem;
            transform: rotate(45deg);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-gray-900);
        }

        .pricing-card .plan-description {
            margin-top: 0.5rem;
            color: var(--color-gray-500);
        }
        
        .price-pricontainer {
            margin-top: 2rem;
        }

        .price-pricontainer .price {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            color: var(--color-gray-900);
            transition: opacity 0.3s ease-in-out;
        }

        .price-pricontainer .period-text {
            color: var(--color-gray-500);
        }

        .card-subtitle {
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: var(--color-gray-600);
            font-weight: 600;
        }

        .features-list {
            margin-top: 1rem;
            list-style: none;
            flex-grow: 1;
        }
        
        .features-list.main-features {
            margin-top: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            color: var(--color-gray-600);
        }

        .features-list svg {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--color-primary);
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .choose-plan-btn {
            display: block;
            width: 100%;
            text-align: center;
            background-color: var(--color-primary);
            color: white;
            font-weight: 600;
            padding: 0.75rem 0;
            border-radius: 0.5rem;
            text-decoration: none;
            margin-top: 2.5rem;
            transition: background-color 0.3s ease;
        }

        .choose-plan-btn:hover {
            background-color: var(--color-primary-dark);

        }

        /* become a partner */
         :root {
            --bg-color: #F7F3E8;
            --primary-color: #3A8E5A;
            --primary-hover-color: #2e7048;
            --text-dark: #1f2937; /* Equivalent to text-gray-800 */
            --text-medium: #4b5563; /* Equivalent to text-gray-600 */
        }

        /* Basic Reset and Body Styles */
     

        .partner {
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        /* Main Container */
        .partner-containerpn {
            width: 100%;
            max-width: 1152px; /* max-w-6xl */
            margin: 0 auto;
            padding: 2rem;
        }
        
        /* Flex wrapper for content */
        .content-wrapperpn {
            display: flex;
            flex-direction: column; /* Stacked on mobile by default */
            align-items: center;
            justify-content: space-between;
            gap: 3rem; /* gap-12 */
        }

        /* Text Content Styling */
        .text-contentpn {
            width: 100%;
            text-align: center;
        }

        .text-contentpn h1 {
            font-size: 2.25rem; /* text-4xl */
            font-weight: 700; /* font-bold */
            line-height: 1.25; /* leading-tight */
            color: white;
        }
        
        .text-contentpn h1 .highlight {
            color: white;
        }

        .text-contentpn p {
            margin-top: 1.5rem; /* mt-6 */
            color: rgb(10, 255, 108);
            font-size: 1.125rem; /* text-lg */
        }
        
        /* Button Styling */
        .cta-button {
            display: inline-block; /* To allow margin-top */
            margin-top: 2rem; /* mt-8 */
            background-color: var(--primary-color);
            color: white;
            font-weight: 600; /* font-semibold */
            padding: 0.75rem 2rem; /* py-3 px-8 */
            border: none;
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); /* shadow-md */
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        .cta-button:hover {
            background-color: white;
            color: var(--color-primary);
            transform: scale(1.05);
        }

        /* Image Content Styling */
        .image-contentpn {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .partner-image {
            max-width: 24rem; /* max-w-sm */
            width: 100%;
        }

        /* Responsive Design for Medium screens and up */
        @media (min-width: 768px) {
            .content-wrapperpn {
                flex-direction: row; /* Side-by-side layout */
            }
            .text-contentpn, .image-contentpn {
                width: 50%;
            }
            .text-contentpn {
                text-align: left;
            }
            .text-contentpn h1 {
                font-size: 3rem; /* md:text-5xl */
            }
            .partner-image {
                max-width: 28rem; /* md:max-w-md */
            }
        }

        /* Responsive Design for Large screens */
        @media (min-width: 1024px) {
            .text-contentpn h1 {
                font-size: 3.75rem; /* lg:text-6xl */
            }
            .partner-image {
                max-width: 32rem; /* lg:max-w-lg */
            }
        }
        
        /* ------ ANIMATIONS (Unchanged from original code) ------ */
        
        /* Keyframe animation for the image */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* Applying the animation */
        .floating-image {
            animation: float 4s ease-in-out infinite;
            transition: transform 0.3s ease-in-out;
        }

        /* Hover effect for the image */
        .floating-image:hover {
            transform: scale(1.05) translateY(-5px);
        }

        /* Text animation */
        .animated-text h1,
        .animated-text p,
        .animated-text .cta-button {
            opacity: 0;
            transform: translateY(20px);
            animation: text-appear 0.8s forwards;
        }
        
        /* Stagger the animation */
        .animated-text p { animation-delay: 0.2s; }
        .animated-text .cta-button { animation-delay: 0.4s; }

        @keyframes text-appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* contact section */

         .contacts {
            font-family: 'Inter', sans-serif;
            /* background: linear-gradient(135deg, #08ab52, #056b33); */
            color: white;
            margin: 0;
            padding: 2rem 1rem;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        /* Fade-in animation for the page */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Contact Form Container */
        .contactform {
            width: 100%;
            max-width: 1200px;
            animation: fadeIn 0.8s ease-out;
        }

        .cf1 {
            display: flex;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            flex-wrap: wrap; /* Allows items to wrap on smaller screens */
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Left Side Content */
        .cf_cont {
            flex: 1;
            padding: 40px;
            min-width: 300px;
        }

        .cf_cont h1 {
            font-size: 2.5rem;
            margin-top: 0;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .cf_cont h3 {
            font-weight: 400;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cf_cont h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            padding-bottom: 5px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.5);
            display: inline-block;
        }

        .cf_cont p {
            font-size: 1rem;
            margin: 0.5rem 0;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .cf_cont p:hover {
            color: #d1fff0;
        }

        .cf_cont p i {
            margin-right: 12px;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        /* Right Side Form Container */
        .form-container {
            flex: 1;
            padding: 40px;
            background-color: rgba(0, 0, 0, 0.15);
            min-width: 300px;
        }

        .form {
            display: flex;
            flex-direction: column;
        }

        .input, .textarea {
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid transparent;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .input::placeholder, .textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .input:focus, .textarea:focus {
            outline: none;
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        }

        .textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Button Container */
        .button-container {
            display: flex;
            gap: 15px; /* Space between buttons */
            margin-top: 10px;
        }
        
        .button-container button {
            flex-grow: 1; /* Make buttons share space equally */
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }
        
        .button-container button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .button-container button:active {
            transform: translateY(-1px);
        }

        .submit-btn {
            background-color: #ffffff;
            color: #08ab52;
        }
        
        .submit-btn:hover {
             background-color: #f0f0f0;
        }

        .reset-button button {
            background-color: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        
        .reset-button button:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Map Section */
        .map-container {
            width: 100%;
            max-width: 1200px;
            margin-top: 3rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeIn 0.8s ease-out 0.2s; /* Delayed animation */
            animation-fill-mode: both;
        }

        .map-responsive {
            position: relative;
            height: 0;
            padding-bottom: 50%; /* Aspect ratio */
            overflow: hidden;
        }

        .map-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 800px) {
            .cf1 {
                flex-direction: column;
            }
            body {
                padding: 1rem 0.5rem;
            }
        }

        /* Footer Section */

         .footerx {
      font-family: 'Inter', sans-serif;
      color: #1a202c;
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

 

    /* --- Footer --- */
    .footerx {
      /* background: linear-gradient(135deg, #08ab52, #057a38); */
      color: white;
      padding: 10px 20px;
      margin-top: auto;
      animation: fadeIn 1.5s ease-in-out;
      position: relative;
      overflow: hidden;
    }

    /* .footerx::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 10%, transparent 40%);
      animation: mover 10s linear infinite;
      z-index: 0;
    } */

    @keyframes mover {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    

    .footer-container {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: auto;
      margin-bottom: 10px;
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
      gap: 30px;
      padding: 50px 70px 50px 70px;
      border-radius: 50px;
      box-shadow: 10px 10px 10px 10px #11182c;
      box-shadow: 5px 10px 8px #000000;
      background-color: #11182c;
    }

    .footer-column {
      flex: 1;
      min-width: 250px;
      /* text-align: center; */
    }

    .footer-column h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: 600;
      display: inline-block;
      border-bottom: 2px solid #fbbf24;
      padding-bottom: 8px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .footer-column h3:hover {
      transform: translateY(-5px);
      color: #fbbf24;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
      transition: transform 0.3s ease;
    }

    .footer-links li:hover {
      transform: translateX(8px);
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    .footer-links a:hover {
      color: #fbbf24;
      text-shadow: 0 0 6px rgba(251, 191, 36, 0.8);
    }

    /* Logo and Social */
    .logo-container {
      text-align: center;
      display: flex;
    }

    .footer-logo img {
      width: 220px;
      height: auto;
      margin-bottom: 10px;
      transition: transform 0.5s ease;
    }

    .footer-logo img:hover {
      transform: scale(1.1) rotate(8deg);
    }

    .wrapper {
      display: inline-flex;
      list-style: none;
      padding: 0;
      margin-top: 10px;
      justify-content: center;
      width: 100%;
    }

    .wrapper .icon {
      position: relative;
      background: #fff;
      border-radius: 50%;
      margin: 10px;
      width: 50px;
      height: 50px;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
      color: #08ab52;
    }

    .wrapper .icon:hover {
      transform: translateY(-6px) scale(1.1);
    }

    .wrapper .tooltip {
      position: absolute;
      top: -40px;
      font-size: 14px;
      background: #333;
      color: #fff;
      padding: 5px 8px;
      border-radius: 5px;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .wrapper .tooltip::before {
      content: "";
      position: absolute;
      height: 8px;
      width: 8px;
      background: #333;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
    }

    .wrapper .icon:hover .tooltip {
      opacity: 1;
      top: -50px;
    }

    /* Social Hover Colors */
    .facebook:hover {
      background: #1877f2;
      color: #fff;
    }

    .linkedin:hover {
      background: #0A66C2;
      color: #fff;
    }

    .instagram:hover {
      background: #e4405f;
      color: #fff;
    }

    /* Contact */
    .footer-contact p {
      margin-bottom: 15px;
      font-size: 0.95rem;
    }

    .footer-contact a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact a:hover {
      color: #fbbf24;
    }

    /* Form */
    .api-form p {
      margin-bottom: 10px;
      font-weight: 500;
    }

    .api-input-group {
      display: flex;
      border-radius: 8px;
      overflow:visible;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .api-input-group:focus-within {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .api-input {
      border: none;
      padding: 12px 15px;
      flex-grow: 1;
      font-size: 1rem;
      border-radius: 8px 0 0 8px;
      outline: none;
      color: #333;
    }

    .api-submit {
      background-color: #fbbf24;
      color: #1a202c;
      border: none;
      padding: 0 20px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 0 8px 8px 0;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .api-submit:hover {
      background-color: #f59e0b;
      transform: scale(1.05);
    }

    /* Footer Bottom */
    .mark2 {
      text-align: center;
      margin-top: 30px;
      font-size: 1rem;
      color: white;
      opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-column {
        margin-bottom: 30px;
      }

      .footer-column h3 {
        font-size: 22px;
      }
    }

    

    .logo-container2 {
      text-align: center;
      display: grid;
      grid-template-rows: 200px 100px;
      justify-content: center;
    }

     .logo-container2 img {
      width: 500px;
      height: auto;
      margin-bottom: 10px;
      margin-top: -290px;
      transition: transform 0.5s ease;
     }

     /* -------- Mobile Responsive Fixes -------- */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero-text p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .hero-text button {
    width: 100%;
  }
  .hero-image img {
    height: auto;
    max-width: 100%;
  }

  /* WhatsApp Section */
  .text-content h1 {
    font-size: 4rem;
    line-height: 1;
  }
  .subcontainer {
    flex-direction: column;
    margin-top: 0;
  }
  .subtext {
    width: 100%;
    padding: 0 1rem;
  }
  .subtext h2 {
    font-size: 28px;
  }
  .subtext p {
    font-size: 16px;
  }
  .subimag1 img,
  .subimag2 img {
    width: 100%;
    height: auto;
  }

  /* Mark Section */
  .mark {
    font-size: 28px;
    margin: 20px 0;
  }

  /* Pricing Cards */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Partner Section */
  .content-wrapperpn {
    flex-direction: column;
    text-align: center;
  }
  .text-contentpn h1 {
    font-size: 2rem;
  }
  .text-contentpn p {
    font-size: 1rem;
  }

  /* Contact Section */
  .cf1 {
    flex-direction: column;
    padding: 1rem;
  }
  .cf_cont, .form-container {
    padding: 20px;
  }
  .cf_cont h1 {
    font-size: 1.8rem;
  }

  /* Footer */
  .footerx {
    padding: 20px 10px;
    text-align: center;
  }
}

/* -------- Small Mobile (≤480px) -------- */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  .text-content h1 {
    font-size: 2.5rem;
  }
  .subtext h2 {
    font-size: 22px;
  }
  .subtext p {
    font-size: 14px;
  }
  .mark {
    font-size: 22px;
  }
  .pricing-card h3 {
    font-size: 1.25rem;
  }
  .price-pricontainer .price {
    font-size: 2rem;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .text-content h1 {
    font-size: 6rem;
  }
  .subtext h2 {
    font-size: 36px;
  }
  .subtext p {
    font-size: 18px;
  }
  .mark {
    font-size: 36px;
  }
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  .price-pricontainer .price {
    font-size: 2.5rem;
  }
}

/* ============================= */
/* RESPONSIVE FOOTER ADJUSTMENTS */
/* ============================= */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .footer-container {
    padding: 40px 30px;
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 24px;
  }

  .footer-logo img {
    width: 180px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .footer-column {
    min-width: unset;
    flex: 1 1 100%;
  }

  .footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    width: 160px;
    margin-bottom: 15px;
  }

  .wrapper {
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .wrapper .icon {
    width: 45px;
    height: 45px;
    margin: 8px;
    font-size: 16px;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }

  .api-input-group {
    flex-direction: column;
    box-shadow: none;
  }

  .api-input {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .api-submit {
    border-radius: 8px;
    width: 100%;
    padding: 12px;
  }

  .mark2 {
    font-size: 0.9rem;
    margin-top: 20px;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .footer-container {
    padding: 20px 15px;
    gap: 15px;
  }

  .footer-column h3 {
    font-size: 20px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-logo img {
    width: 140px;
  }

  .wrapper .icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .api-input {
    font-size: 0.9rem;
    padding: 10px;
  }

  .api-submit {
    font-size: 0.9rem;
    padding: 10px;
  }

  .mark2 {
    font-size: 0.8rem;
  }
}
