@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #1b4b4b;
  --backgroundColor: white;
  --text-color: gray;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

.text-content {
  color: var(--primary-color);
}

body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  /* font-family: "Montserrat", sans-serif; */
}

/* ------------------------------------ NAVBAR LOGO  START   */
#header-logo {
  height: 65px;
  width: 90px;
  border-radius:25px
}
/* ------------------------------------ NAVBAR LOGO  END   */
/* ------------------------------------ CAROUSEL START   */
.carousel-item {
  height: 100vh;
  min-height: 300px;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  padding: 10px;
}

.carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.carousel-caption p {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 90vh !important; /* Smaller height on mobile */
  }
  
  .carousel-caption {
    bottom: 20px;
    transform: none;
    padding: 5px;
  }
  
  .carousel-caption h5 {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }
  
  .carousel-caption p {
    font-size: 0.8rem;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.carousel-indicators {
  bottom: 10px;
}
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
/* ------------------------------------ CAROUSEL END   */
/* ------------------------------------ NAVBAR START   */
nav {
  background: var(--backgroundColor);
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

label.logo {
  color: #276e66;
  font-size: 26px;
  line-height: 80px;
  padding: 0 20px;
  font-weight: bold;
  float: left;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 7px;
}

nav ul li a {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-color);
  font-size: 17px;
  padding: 8px 12px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

a.active,
a:hover {
  background: #276d66;
  color: #fff;
}

.checkbtn {
  font-size: 26px;
  color: #276d66; /* ✅ Make sure it's visible */
  float: right;
  line-height: 80px;
  margin-right: 20px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

/* ✅ Mobile styles */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #e9f6f0;
    top: 80px;
    left: -100%;
    text-align: center;
    flex-direction: column;
    transition: all 0.5s ease;
  }
  
  nav ul li {
    display: block;
    margin: 30px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
    background: transparent;
    padding: 10px 20px;
  }

  a.active,
  a:hover {
    background: #5d9c8a;
    color: #fff;
  }

  #check:checked ~ ul {
    left: 0;
  }

  label.logo {
    padding-left: 20px;
    display: flex;
    align-items: center;
  }
}
/* ------------------------------------ NAVBAR END   */

/* ///// TRUSTED BY SECTION \\\\\\\ */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, #1c4b4a 0%, #276d66 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: floatClouds 20s linear infinite;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .btn {
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-section .btn-primary {
  background-color: #a7d7c5;
  color: #1c4b4a;
  border: none;
}

.hero-section .btn-outline-light:hover {
  background-color: #fff;
  color: #1c4b4a;
}

@keyframes floatClouds {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-50px) rotate(360deg);
  }
}

.globe-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.05;
}

.rotating-globe {
  width: 400px;
  height: 400px;
  background: radial-gradient(#5d9c8a, transparent 70%);
  border-radius: 50%;
  border: 8px solid #a7d7c5;
  animation: spin 30s linear infinite;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.03);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* //// PRODUCT INDEX */
.products-section {
  overflow-x: hidden; /* Prevent horizontal overflow */
  width: 100%;
}

.products-section .container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

/* Product grid adjustments */
.products-section .row {
  margin-left: -5px;
  margin-right: -5px;
}

.products-section .row > [class^="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.product-card {
  margin: 0;
}

/* Mobile-specific fixes */
@media (max-width: 576px) {
  .products-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .products-section .row {
    margin-left: -4px;
    margin-right: -4px;
  }
  
  .products-section .row > [class^="col-"] {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 360px) {
  .products-section .col-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  
  .product-card p {
    font-size: 0.8rem;
  }
}

/* //// FLEXIBILITY IN TRADE \\\\\ */
.trade-options-section {
  background-color: #eafaf4;
  /* Light mint green */
  overflow: hidden;
  position: relative;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/white-wall-3.png");
  /* Light graphic */
  opacity: 0.15;
  background-repeat: repeat;
  z-index: 1;
}

.trade-options-section .container {
  position: relative;
  z-index: 2;
}

.trade-option-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trade-option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* //// REVIEW / TESTIMONIALS \\\\\ */
.review-section {
  background: linear-gradient(135deg, #f2f6fa, #d9e8f5);
  background-image: url("https://www.transparenttextures.com/patterns/white-wall.png");
  background-size: contain;
  padding: 80px 20px;
  overflow: hidden;
}

.review-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #1b4b4b;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #607d8b;
  margin-bottom: 50px;
}

.scrolling-wrapper {
  display: flex;
  gap: 20px;
  animation: scroll-left 30s linear infinite;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  min-width: 280px;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.user-name {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.stars {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.user-review {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .scrolling-wrapper {
    animation: scroll-left 40s linear infinite;
  }
}

/* ///// EXIM PROCESS \\\\\ */

.exim-wrapper {
  height: 300vh;
  /* Extended scroll space */
  background: #f4f7fb;
  position: relative;
}

.exim-sticky {
  position: sticky;
  top: 80px;
  /* Offset to prevent navbar overlap */
  height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1b4b4b;
  background-image: url("https://www.transparenttextures.com/patterns/large-leather.png");
  /* background-image: url("https://www.transparenttextures.com/patterns/foggy-birds.png"); */

  padding: 60px 40px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.03);
  z-index: 10;
}

.exim-header {
  position: absolute;
  top: 20px;
  left: 60px;
  z-index: 2;
}

.exim-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.exim-subtitle {
  font-size: 1.2rem;
  color: #e6e6e6;
  margin-top: 10px;
}

.exim-timeline {
  display: flex;
  gap: 40px;
  padding-left: 400px;
  padding-top: 100px;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.exim-step {
  flex: 0 0 360px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0.5;
  transform: scale(0.92);
  transition: all 0.5s ease;
  border-top: 4px solid #3498db;
  position: relative;
}

.exim-step.visible {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.exim-step h3 {
  font-size: 1.3rem;
  color: #2d3e50;
  margin-bottom: 12px;
  font-weight: 600;
}

.exim-step p {
  font-size: 0.96rem;
  color: #556670;
  line-height: 1.6;
}

/* /////////// TOP COUNTRIES SECTION \\\\\\\\\\\\\\\\ */
#top-countries img {
  transition: transform 0.3s ease;
}

#top-countries img:hover {
  transform: scale(1.1);
}

/* /////////// WHY US SECTION \\\\\\\\\\\\\\\\ */
.why-us-section {
  background-color: #1f4052;
  background-image: url("https://www.transparenttextures.com/patterns/large-leather.png");

  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.why-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: bold;
}

.why-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.why-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  max-width: 300px;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-box img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 180px;
  object-fit: cover;
}

.why-box h3 {
  font-size: 1.4rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .why-content {
    flex-direction: column;
    gap: 24px;
  }
}

/* /////////// EXIM BLOG SECTION \\\\\\\\\\\\\\\\ */
.exim-blogs-section {
  background: linear-gradient(to right, #f0f4f8, #e3ecf3);
  padding: 70px 30px;
  text-align: center;
  overflow: hidden;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 50px;
  position: relative;
  animation: fadeInDown 1s ease;
}

.blog-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.exim-blog-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  overflow: hidden;
  transition: transform 0.4s ease;
  animation: fadeInUp 1.2s ease;
}

.exim-blog-card:hover {
  transform: translateY(-10px);
}

.exim-blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
  text-align: left;
}

.blog-card-content h3 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 10px;
}

.blog-card-content p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 12px;
}

.read-more {
  background: #0d6efd;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #0a58ca;
}

.blog-full {
  display: none;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #374151;
}

.blog-full ul {
  padding-left: 20px;
  list-style: disc;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .blog-card-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* --------------------------- FOR FOOTER */
.footer-section {
  font-family: "Quicksand", sans-serif;
  background-color: #b5e48c;
  background-image: url("https://www.transparenttextures.com/patterns/subtle-zebra-3d.png");
}

.footer-link {
  color: #1b4b4b;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: 0.3s ease;
  padding: 0.3em;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section .fa-facebook-f {
  color: #3b5998;
}

.footer-section .fa-twitter {
  color: #00acee;
}

.footer-section .fa-instagram {
  color: #e1306c;
}

.footer-section .fa-linkedin-in {
  color: #0077b5;
}

/* SCROLL TO TOP BUTTON  */
.scroll-to-top {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #1b4b4b;
  /* Use your primary theme color */
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: background 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #2a9d8f;
  /* Hover color */
}

/* ////////////////////. HEADER AND BREADCRUMB \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.page-hero {
/*  background-color: #c97b6d;
  background-image: url("https://www.transparenttextures.com/patterns/wood-pattern.png");*/
background-color: #4e807c;
background-image: url("https://www.transparenttextures.com/patterns/swirl.png");
  min-height: 320px;
  padding-top: 120px;
  /* accounts for fixed navbar */
  padding-bottom: 60px;
  background-attachment: fixed;
  position: relative;
}
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */

/* ////////////////////. ABOUT US VISION AND MISSION \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.vision-intro {
  background-color: #f4f9fb;
  color: #004b50;
}

.vision-hero {
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 179, 179, 0.05);
  animation: float 10s ease-in-out infinite;
  z-index: 0;
}

.animated-bg::before {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -100px;
}

.animated-bg::after {
  width: 250px;
  height: 250px;
  bottom: 5%;
  right: -80px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }
}

.vision-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.mission-section {
  background-color: #f9fbfc;
  z-index: 1;
}

.mission-animated::before,
.mission-animated::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 75, 80, 0.05);
  animation: float 12s ease-in-out infinite;
  z-index: 0;
}

.mission-animated::before {
  width: 150px;
  height: 140px;
  top: -40px;
  left: 20px;
}

.mission-animated::after {
  width: 180px;
  height: 140px;
  bottom: -40px;
  right: 40px;
}

.mission-img {
  height: 350px !important;
  width: 500px !important;
}

/* Carousel */

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
  background: white !important;
  padding: 24px;
  border-radius: 16px;
  margin: 16px;
  outline: none;
}

/* /////////////////////// PRODUCT  \\\\\\\\\\\\\\\\\\\\\\\\\\ */
.product-page .card-img-top {
  object-fit: cover;
  height: 250px;
}
.product-page .card {
  transition: all 0.3s ease-in-out;
}
.product-page .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.see-all-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b09b, #96c93d);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.see-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
/* /////////////////////// CONTACT  \\\\\\\\\\\\\\\\\\\\\\\\\\ */

.contact-form-section {
  max-width: 800px;
  margin: 5px;
  padding: 40px;
  background: linear-gradient(to bottom, #ffffff, #f4f8fb);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.form-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1e293b;
  text-align: center;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  transition: border 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  outline: none;
}
.submit-btn {
  background: #3b82f6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}
.submit-btn:hover {
  background: #2563eb;
}
.captcha-row {
  align-items: flex-start;
}
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
#captchaImage {
  height: 50px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}
#refreshCaptcha {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #1e40af;
  cursor: pointer;
}

/* ////// FOR PRODUCT - SINGLE PAGE  \\\\\\\ */

.single-product-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #fefefe;
}
.product-wrapper {
  display: flex;
  max-width: 1000px;
  gap: 40px;
  flex-wrap: wrap;
}
.product-images {
  flex: 1;
  min-width: 300px;
}
.main-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.thumbnail-images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.thumbnail-images .thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.thumbnail-images .thumb:hover {
  border-color: #3b82f6;
}
.product-details {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-name {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 10px;
}
.product-description {
  font-size: 1rem;
  color: #4b5563;
}
.similar-products-section {
  background: linear-gradient(to bottom, #eef2f7, #dbeafe);
  padding: 60px 20px;
  position: relative;
}
.section-heading {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.similar-products {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  width: 220px;
}
.product-card:hover {
  transform: translateY(-10px);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.flying-shapes .bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 12s infinite ease-in-out;
}
.similar-products-section {
  background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  animation: bubbleFloat 20s infinite ease-in-out;
}
.animated-bg::before {
  top: -100px;
  left: -100px;
}
.animated-bg::after {
  bottom: -100px;
  right: -100px;
}
@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.similar-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.4s ease;
}
.similar-card:hover {
  transform: translateY(-12px) scale(1.03);
}
.similar-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.similar-card h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin: 0;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ////// KINZA COLA LANDING PAGE  \\\\\\\ */


.kinza-landing {
  min-height: 100vh;
  background: linear-gradient(to right, #111827, #1f2937);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kinza-content {
  max-width: 700px;
  z-index: 2;
  position: relative;
}

.kinza-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00e0ff, #ff4b2b, #ffe600, #00ff88);
  -webkit-text-fill-color: transparent;
  background-clip: content-box;
  -webkit-background-clip: text; 
}

.kinza-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.kinza-btn {
  background: #fff;
  color: #ff416c;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kinza-btn:hover {
  background-color: #ffd6dc;
}

.kinza-bottle {
  margin-top: 40px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.bubbles {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(1.5);
    opacity: 0;
  }
}

/*kinza carousel*/
.carousel-kinza {
  position: relative;
  width: 220px;
  height: 300px;
  margin: 40px auto 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  min-width: 100%;
  max-width: 220px;
  height: 300px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
  z-index: 3;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-btn.prev {
  left: -40px;
}

.carousel-btn.next {
  right: -40px;
}

/* Generate 20 bubbles randomly */
.bubble:nth-child(n) {
  width: calc(10px + 20 * random());
  height: calc(10px + 20 * random());
  left: calc(100% * random());
  animation-duration: calc(6s + 6 * random());
  animation-delay: calc(-10s * random());
}

.benefits-section {
  padding: 80px 20px;
  background-color: #fff;
  color: #1f2937;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: #f9fafb;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-card h4 {
  color: #ff416c;
}

footer {
  background: #023e8a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

/* //////////// FOR WHATSAPP CHAT BOT \\\\\\\\\\\\\\\ */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-content {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.whatsapp-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* /////////////////////////// DISTRIBUTORS \\\\\\\\\\\\\\\\\\\\\\\\\\ */
.distributor-form-section {
  background: #f5f9f7;
}

.form-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #276d66;
}

.form-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
}

.form-group input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus {
  border-color: #276d66;
  outline: none;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

#captchaImage {
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#refreshCaptcha {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #276d66;
}

.submit-btn {
  background-color: #276d66;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #1f5c55;
}

@media (max-width: 768px) {
  .form-heading {
    font-size: 1.5rem;
  }
}
/* /////////////////////////// CERTIFICATES \\\\\\\\\\\\\\\\\\\\\\\\\\ */
/* Certificate Grid Styling */
.certificate-card {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.certificate-card:hover img {
  transform: scale(1.05);
}

/* Watermark */
.certificate-card::after {
  content: "CONFIDENTIAL - SIDDIQUI GLOBAL";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.8rem;
  font-weight: bold;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

/* Modal Styling */
#certModal .modal-body {
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding: 2rem;
}

#certModal img {
  max-height: 80vh;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.certificate-card {
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid #dee2e6;
  transition: box-shadow 0.3s ease;
}

.certificate-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/* ///////////// KINZA COLA DIFFERENT PRODUCT  */
.product-card-custom {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.product-card-custom:hover {
  transform: translateY(-4px);
}

.product-img-custom {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #ccc;
}

 /* ////////////////// KINZA WELCOME PAGE */
.kinza-intro-section {
  font-family: 'Segoe UI', sans-serif;
}

.kinza-intro-section h2,
.kinza-intro-section h5 {
  color: #276e66;
}

.kinza-intro-section p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-justify {
  text-align: justify;
}
/* BANK DETAILS INDEX PAGE */
.payment-info-section {
  padding: 60px 20px;
  background: #f4fdfb;
  color: #1b1b1b;
}

.payment-info-section .section-title {
  font-size: 2rem;
  color: #276d66;
  margin-bottom: 30px;
}

.bank-details-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  border-left: 6px solid #276d66;
}

.bank-info p,
.bank-disclaimer p {
  font-size: 16px;
  margin: 10px 0;
}

.bank-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.bank-disclaimer h4 {
  margin-bottom: 15px;
  color: #8a6d3b;
  font-weight: bold;
}
