html,
body {
 
  overflow-x: hidden;
}

/* Center the navbar items */
.navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Toggler */
.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: box-shadow .15s ease-in-out;
  margin-left: auto;
}

/* Theme */
.navbar { background-color: #ff9800 !important; }
.navbar-nav .nav-link { color: #fff !important; }
.navbar-nav { color: #f8f9fa !important; text-transform: uppercase; font-size: 1rem; padding: 0 20px; }
.navbar-nav .nav-item { padding-right: 20px; }
.navbar-expand-lg .navbar-nav .nav-link { padding-right: 0; padding-left: 0; }

/* Small typography tweak */
@media (min-width: 320px) {
  .dropdown-menu { font-size: 0.9rem; }
}

/* ================= DESKTOP (hover only) ================= */
@media (min-width: 992px) {
  /* Sirf 1st level dropdown hover par */
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* Submenu (child) hover par hi khule */
  .dropdown-menu > .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  /* Submenu ko right me position */
  .dropdown-menu .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
  }

  /* (Optional) caret ko right indicate karna ho to */
  .dropdown-submenu > .dropdown-toggle::after {
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    border-top: .3em solid transparent;
    border-bottom: .3em solid transparent;
    border-left: .3em solid currentColor;
  }
}

/* ================= MOBILE/TABLET (click only) ================= */
@media (max-width: 991.98px) {
  /* Nested menus vertically stack (side-by-side nahi) */
  .dropdown-menu .dropdown-menu {
    position: static;
    float: none;
    margin: .25rem 0 0;   /* single margin – jumping/padding fix */
    /* optional: thoda compact padding */
    /* padding: .25rem 0; */
  }
}

/* Hover & Active underline for navbar links */
.navbar .nav-link {
  position: relative;
  color: #fff !important;
  text-decoration: none;
  padding-bottom: .35rem;
  transition: color .2s ease;
}

/* Base underline (hidden) */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;        /* adjust -4/-8 if needed */
  height: 3px;         /* thickness */
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

/* Hover color + show line */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #000 !important;
}
.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  transform: scaleX(1) !important;
  content: "" !important;  /* overrides any earlier 'content: none !important' */
}

/* Active stays highlighted (same look as hover) */
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
  color: #000 !important;
}
.navbar .nav-link.active::after,
.navbar .nav-link[aria-current="page"]::after {
  transform: scaleX(1) !important;
  content: "" !important;
}

/* Dropdown items: simple hover/active (optional underline) */
.dropdown-menu .dropdown-item {
  position: relative;
  transition: color .2s ease, background-color .2s ease;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  color: #000;
  background: transparent;
}



/* General Navigation Link Styling */

/* hero section */

.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.hero-slide:nth-child(1) {
  background-image: url("img/truck-logistics-operation-dusk.jpg");
}
.hero-slide:nth-child(2) {
  background-image: url("img/agri.jpeg");
}
.hero-slide:nth-child(3) {
  background-image: url("img/transport-logistics-products.jpg");
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

.animated-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  animation: titleAnimation 1s forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.hero-content .btn {
  background-color: #f57c00;
  padding: 10px 30px;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero-content .btn:hover {
  background-color: #ff9800;
}

/* Title Animation */
@keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Text Fade In */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Zoom-in Image Effect */
.hero-slide.active {
  display: block;
  animation: zoomIn 1s forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .animated-title {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

/* Section spacing */
.about-uma-exports-section{
  padding: 64px 0;
  background: #fff;
}

/* Container (Bootstrap replacement) */
.about-uma-exports-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Two-column responsive grid */
.about-uma-exports-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 15px;
}

/* Columns (hooks if needed later) */

/* ---------- IMAGE CARD ---------- */
.about-uma-exports-image-wrap{
  position: relative;
  border-radius: 16px;
  /* let the decorative frame show outside */
  overflow: visible;
}

/* Actual image */
.about-uma-exports-img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
  /* mild pop similar to screenshot */
  filter: saturate(1.05) contrast(1.02);
}

/* Subtle dark gradient on image for depth (optional, keep light) */
.about-uma-exports-image-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0));
  z-index: 3;
  pointer-events: none;
}

/* Orange offset frame behind image (matches screenshot) */
.about-uma-exports-image-wrap::after{
  content: "";
  position: absolute;
  top: -18px;               /* offset */
  left: -18px;
  width: calc(100% + 36px); /* bigger than image */
  height: calc(100% + 36px);
  border-radius: 18px;
  border: 6px solid #f57c00;
  z-index: 1;
}

/* ---------- TEXT SIDE ---------- */
.about-uma-exports-title{
  color: #f57c00;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 44px);
  position: relative;
}

/* orange underline bar */
.about-uma-exports-title::after{
  content: "";
  display: block;
  width: 160px;
  height: 6px;
  border-radius: 3px;
  background: #f57c00;
  margin-top: 14px;
}

.about-uma-exports-lead{
  font-size: clamp(16px, 1.4vw, 20px);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: left;
}

.about-uma-exports-text{
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 26px;
}

/* CTA button (rounded, orange) */
.about-uma-exports-btn{
  display: inline-block;
  padding: 14px 28px;
  background: #f57c00;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #d86b00;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 10px 22px rgba(245,124,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.about-uma-exports-btn:hover{
  background: #ff9800;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,152,0,0.28);
}

/* Phone number text */
.about-uma-exports-contact{
  margin-top: 20px;
  color: #374151;
  font-size: 13px;
}

/* Only number (link) styles — no underline */
.about-uma-exports-contact .contact-phone{
  font-weight: 700;
  color: inherit;
  text-decoration: none;              /* underline off */
  transition: color .2s ease;
}

.about-uma-exports-contact .contact-phone:hover,
.about-uma-exports-contact .contact-phone:focus,
.about-uma-exports-contact .contact-phone:active{
  color: #f59e0b;                     /* hover color */
  text-decoration: none;              /* still no underline */
  outline: none;
}

/* Optional keyboard focus ring */
.about-uma-exports-contact .contact-phone:focus-visible{
  box-shadow: 0 0 0 3px rgba(245,158,11,.25);
  border-radius: 2px;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px){  /* tablet and below */
  .about-uma-exports-row{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 15px;
  }
  /* reduce frame offset so it doesn't overflow screen */
  .about-uma-exports-image-wrap::after{
    top: -14px; left: -14px;
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    border-width: 5px;
  }
}

@media (max-width: 576px){  /* phones */
  .about-uma-exports-section{ padding: 44px 0; }
  .about-uma-exports-title::after{ width: 120px; height: 5px; }
  .about-uma-exports-btn{ width: 100%; text-align: center; }
  /* tighter frame on small phones */
  .about-uma-exports-image-wrap::after{
    top: -10px; left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-width: 4px;
  }
}

/* ---- Section wrapper ---- */
.what-we-offer-section{
  padding: 15px;
  background:#fff;
}

/* Container width */
.what-we-offer-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Headings */
.what-we-offer-head{ margin-bottom: 18px; }
.what-we-offer-title{
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: .02em;
  color:#111827;           /* dark slate */
  text-transform: uppercase;
}
.what-we-offer-subtitle{
  margin-top: 6px;
  color:#f57c00;           /* brand orange */
  font-weight:600;
  font-size: 25px;
}

/* ---- Grid ---- */
.what-we-offer-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
  margin-top: 28px;
}

/* ---- Card ---- */
.what-we-offer-card{
  background:#ffffff;
  border:1px solid #e5e7eb;                      /* light border */
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);      /* soft shadow */
  padding: 22px 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display:flex;                                   /* equal-height feel */
}
.what-we-offer-card:hover{
  transform: translateY(-4px);
  border-color:#eceff3;
  box-shadow: 0 16px 32px rgba(0,0,0,0.10);
}

/* Inner row: icon + text (like screenshot) */
.what-we-offer-row-inner{
  display:grid;
  grid-template-columns: 96px 1fr;               /* left icon column */
  align-items:center;
  gap: 10px;
  width:100%;
}

/* Icon */
.what-we-offer-icon-col{ display:flex; justify-content:center; }
.what-we-offer-icon{
  font-size: 58px;
  line-height: 1;
  color:#f57c00;                                  /* orange icon */
}

/* Text area */
.what-we-offer-text-col{ text-align:center; padding: 6px 8px; }
.what-we-offer-product-title{
  font-size: 20px;
  font-weight:800;
  color:#111827;
  margin: 0 0 8px;
}
.what-we-offer-product-description{
  color:#6b7280;
  line-height:1.7;
  margin:0 0 12px;
}

/* Learn more link */
.what-we-offer-learn-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#f57c00;
  font-weight:700;
  text-decoration:none;
}
.what-we-offer-learn-more:hover{
  color:#ff9800;
}
.what-we-offer-learn-more span{
  transition: transform .2s ease;
}
.what-we-offer-learn-more:hover span{
  transform: translateX(3px);
}

/* ---- Responsiveness ---- */
@media (max-width: 992px){       /* tablet */
  .what-we-offer-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
  }
  .what-we-offer-row-inner{
    grid-template-columns: 84px 1fr;
  }
  .what-we-offer-icon{ font-size: 52px; }
}

@media (max-width: 576px){       /* phones */
  .what-we-offer-section{ padding: 44px 0; }
  .what-we-offer-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .what-we-offer-row-inner{
    grid-template-columns: 1fr;          /* icon on top, text below */
    gap: 12px;
  }
  .what-we-offer-text-col{ text-align:center; }
  .what-we-offer-icon{ font-size: 48px; }
}



/*  section 4 aboutus */
#about {
  position: relative;
  /*padding: 50px 0;*/
}

/* Background Image */
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('img/legumes-beans-assortment-different-bowls-light-stone-background-top-view-healthy-vegan-protein-food.jpg'); Replace with your image path */
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Adjust the opacity as needed */
  z-index: -1; /* Ensure the background stays behind the content */
}

/* Image section */

/* Image Section */
.image-container {
  position: relative;
  display: inline-block;
  margin: 10px;
}

/* Styling the image */
.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners */

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Adding a subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover Effect */
.image-container img:hover {
  transform: scale(1.05); /* Zoom in effect */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
  border-color: #ff3d00; /* Darker border color on hover */
}

/* Adding a decorative element */
.image-container:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 4px solid #ff3d00; /* Double border effect */
  border-radius: 10px;
  pointer-events: none;
  z-index: -1;
}

/* Text Card Section */
.about-card {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

/* Heading styling */
#about .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #f57c00;
  position: relative;
  padding: 30px;
  text-align: center;
}

/* #about .section-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 50%;
  background-color: #f57c00;
} */

/* Button Styling */
#about .btn {
  background-color: #f57c00;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
}

#about .btn:hover {
  background-color: #e65100;
}

/* Optional spacing and responsive adjustments */
@media (max-width: 767px) {
  .about-section {
    padding: 40px 0;
  }

  .about-card {
    padding: 20px;
  }
}

/* section 5 */
/* Section5 Feature Styling */
/* ---------- Section wrapper */
#section5-feature.section5-feature{
  position: relative;
  padding: 34px 0;
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(245,124,0,0.12), transparent 60%),
    radial-gradient(1200px 400px at 90% 110%, rgba(255,152,0,0.10), transparent 60%),
    #f8f9fa;
  overflow: hidden;
}

/* Optional soft pattern */
#section5-feature.section5-feature::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events:none;
}

/* ---------- Header */
.section5-head{
  text-align:center;
  margin-bottom: 28px;
}

.section5-kicker{
  display:inline-block;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f57c00;
  font-weight:700;
}

.section5-title{
  margin: 8px 0 6px;
  font-size: clamp(1.6rem, 2.8vw, 1.1rem);
  color: #1f2937;
  font-weight: 800;
}

.section5-subtitle{
  margin: 0 auto;
  max-width: 700px;
  color: #6b7280;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  padding-top: 2%;
}

/* ---------- Grid */
.section5-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

/* ---------- Card */
.section5-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;

  /* gradient border trick */
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(245,124,0,0.4), rgba(255,152,0,0.5)) border-box;

  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  backdrop-filter: blur(6px);
}

.section5-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

/* Icon bubble */
.section5-icon{
  width: 72px; height: 72px;
  display:grid; place-items:center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  font-size: 30px;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(245,124,0,0.35);
  transform: translateY(-6px);
  transition: transform .35s ease, box-shadow .35s ease;
}

.section5-card:hover .section5-icon{
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 14px 28px rgba(245,124,0,0.45);
}

/* Text */
.section5-card-title{
  font-size: 1.25rem;
  line-height: 1.3;
  color: #1f2937;
  font-weight: 800;
  margin: 6px 0 2px;
}

.section5-card-text{
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 8px;
}

/* Link */
.section5-link{
  margin-top: auto; /* push to bottom */
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: #f57c00;
  transition: gap .25s ease, color .25s ease;
}

.section5-link:hover{
  color: #ff9800;
  gap: 12px;
}

/* ---------- Responsiveness */
@media (max-width: 992px){
  .section5-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  #section5-feature.section5-feature{ padding: 48px 0; }
  .section5-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section5-card{
    padding: 22px;
    border-radius: 18px;
  }
  .section5-icon{
    width: 64px; height: 64px; font-size: 26px;
  }
  .section5-title{ font-size: clamp(1.4rem, 4.6vw, 1.8rem); }
}

/* ---------- Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .section5-card,
  .section5-icon,
  .section5-link{
    transition: none !important;
  }
}

/* section 5.5 */
.bgimage {
  position: relative;
  background-image: url("img/legumes-beans-assortment-different-bowls-light-stone-background-top-view-healthy-vegan-protein-food.jpg"); /* Background Image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bgimage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black overlay with reduced opacity */
}

.full-height {
  height: 100%; /* Ensures image fills full height of its container */
  width: 100%; /* Ensures image takes full width */
  /* object-fit: contain;  */
  margin-left: 15px;
}

.col-md-6 {
  position: relative;
  z-index: 1; /* Ensures the image stays above the background */
}

.position-relative {
  position: relative; /* Required to position the box behind the image */
}

.box-overlay {
  position: absolute;
  top: -4%;
  left: -1%;
  width: 50%;
  height: 108%;
  background-color: rgb(255, 115, 0);
  z-index: -1;
}

/* section 6 */
.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  position: absolute;
  top: 10px;
  left: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: #f76c29;
  position: absolute;
  top: 60px;
  left: 20px;
}

.product-card {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 350px; /* Increased height for better interface */
  padding: 20px;
}

.product-card:hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
  transform: translateY(-5px);
}

.product-icon {
  font-size: 60px; /* Larger icon size for emphasis */
  color: #f76c29;
  transition: transform 0.3s ease;
}

.product-icon:hover {
  transform: scale(1.2); /* Zoom-in effect on hover */
}

.product-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.product-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.learn-more {
  color: #f76c29;
  text-decoration: none;
  font-weight: bold;
}

.container {
  position: relative;
}

.card {
  height: 100%;
}

.row-inner {
  display: flex;
  justify-content: space-between;
}

.icon-col {
  width: 30%; /* 30% width for the icons */
  text-align: center;
}

.text-col {
  width: 70%; /* 70% width for the text */
}

/* Base Styles */
.floating-icon-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Initial shadow */
  color: #000;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  animation: shadowPulse 3s infinite ease-in-out; /* Added animation */
}

/* Hover Effects */
.floating-icon-btn:hover {
  transform: scale(1.15);
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6); /* Hover shadow */
}

/* Continuous shadow pulse animation */
@keyframes shadowPulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Starting shadow */
  }
  50% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7); /* Mid pulse shadow */
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9); /* Ending shadow */
  }
}

/* Specific Position and Icon Settings */
.contact-icon {
  left: 20px;
  font-size: 32px;
  background-color: #0d6efd;
  color: #fff;
}

.whatsapp-icon {
  left: 20px;
  font-size: 40px;
  background-color: #25D366;
  color: #fff;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  font-size: 30px;
}

/* Tablet Adjustments */
@media (max-width: 768px) {
  .floating-icon-btn {
    width: 45px;
    height: 45px;
    bottom: 15px;
  }

  .contact-icon {
    left: 15px;
    font-size: 26px;
  }

  .whatsapp-icon {
    right: 15px;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .floating-icon-btn {
    width: 40px;
    height: 40px;
    bottom: 12px;
  }

  .contact-icon {
    left: 10px;
    font-size: 22px;
  }

  .whatsapp-icon {
    right: 10px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* Footer Styles */
.subscribe-bar {
  background: #ff9800;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 25px;
}
.subscribe-bar h3 {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
}
.subscribe-bar p {
  /* opacity: 0.95; */
  margin-bottom: 16px;
  font-size: clamp(0.9rem, 0.4vw + 0.8rem, 1rem);
}
.subscribe-bar .input-group {
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.subscribe-bar .input-group-text {
  background: transparent;
  border: none;
  color: #111;
}
.subscribe-bar .form-control {
  border: none;
  box-shadow: none;
  padding: 0.65rem 0.9rem;
}
.subscribe-bar .btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  min-height: 44px;
}
.subscribe-bar .btn:hover {
  filter: brightness(1.05);
}

/* Reduce side padding on very small screens */
@media (max-width: 575.98px) {
  .subscribe-bar .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ===== Footer (simple, visual text, no cards) ===== */
.footer {
  background-color: #00172d;
  color: #fff;
  padding: 0 0 20px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: #ffcc00;
}
.footer .footer-inner {
  padding: 42px 0 20px;
}

.footer h5 {
  font-weight: 800;
  letter-spacing: 0.3px;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  position: relative;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
}
.footer h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 72px;
  height: 3px;
  background: #ffcc00;
  border-radius: 3px;
}

.footer p,
.footer li,
.footer a {
  font-size: clamp(0.92rem, 0.4vw + 0.8rem, 1rem);
  line-height: 1.6;
  color: #ffffff;
}
.footer .footer-tagline {
  color: #c7d7f3;
  margin-top: 8px;
}

.footer a {
  color: #e8f0ff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer a:hover {
  color: #ffd089;
  text-decoration: none;
  opacity: 1;
}

.footer .list-unstyled li {
  margin-bottom: 10px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.footer-social .social-icon {
  margin: 0 8px; /* left-right space */
  font-size: 18px; 
  color: #fff; 
  transition: color 0.3s;
}

.footer-social .social-icon:hover {
  color: #f57c00; /* hover color */
}


/* Column separators on large screens only */
@media (min-width: 1200px) {
  .footer .sep-lg + .sep-lg {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer .sep-lg {
    padding-left: 24px;
  }
}

/* Center text on phones, left-align on md+ */
.text-resp {
  text-align: center;
}
@media (min-width: 768px) {
  .text-resp {
    text-align: left;
  }
}

.footer-bottom {
  background: #111a2a;
  color: #e8f0ff;
  text-align: center;
  padding: 14px 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom .credit {
  font-weight: 600;
}
.footer-bottom .credit a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 800;
}
.footer-bottom .credit a:hover {
  color: #ffd766;
  text-decoration: none;
}

/* About Us main page */
/* About Us Section Styling */
.aboutus {
  position: relative;
  background-image: url("img/truck-logistics-operation-dusk.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  height: 300px; /* Adjust the height as needed */
  display: flex;
  justify-content: flex-start; /* Align content to the left */
  align-items: center;
  text-align: left; /* Align text to the left */
  color: white;
  padding-left: 40px; /* Add some padding for spacing */
  overflow: hidden;
}

/* Left Side Overlay with Shadow Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Adjust the width of the overlay */
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0) 100%
  );
  
}

/* Content Styling */
.content {
  position: relative;
  z-index: 1; /* Ensure content is above the overlay */
  max-width: 600px; /* Limit the width of the content */
  padding: 20px;
}

/* Breadcrumb Styling */
.breadcrumb {
  font-size: 18px;
  margin-top: 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #ffa500;
  font-weight: bold;
}

.breadcrumb span {
  color: white;
}

/* About Us Heading */
.content h1 {
  font-size: 50px;
  margin-top: 0;
}

.content p {
  font-size: 20px;
  max-width: 800px;
  margin: 20px 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 18px;
  }
}

/* about us 2 section */

/* About Us Section */
.aboutus-section {
  padding: 50px 20px;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Section */
.aboutus-image {
  flex: 1;
  max-width: 48%;
  /* padding-right: 20px; */
  position: relative;
}

.aboutus-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Orange Border on Left of the Image */
.aboutus-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  height: 100%;
  background-color: #ffa500; /* Orange color */
}

/* Orange Border on Top of the Text */
.aboutus-text {
  flex: 1;
  max-width: 48%;
  position: relative;
}

.aboutus-text h2 {
  font-size: 18px;
  color: #ffa500; /* Orange color */
  margin-bottom: 30px;
}

/* Orange Border on Top of the Heading */
/* .aboutus-text h1::before {
  content: "";
  position: absolute;
  top: -20px; 
  left: 0;
  width: 100%;
  height: 5px; 
  background-color: #ffa500; 
}  */

.aboutus-text h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

/* Orange Border on Top of the Text Section */
/* .aboutus-text::before {
  content: "";
  position: absolute;
  top: -20px; 
  left: 0;
  width: 100%;
  height: 5px; 
  background-color: #ffa500; 
} */

.aboutus-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .aboutus-image {
    max-width: 100%;
    margin-bottom: 60px;
  }

  .aboutus-text {
    max-width: 100%;
  }

  .aboutus-text h1 {
    font-size: 28px;
  }

  .aboutus-text p {
    font-size: 14px;
  }
}
@media (max-width: 320px){

}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 50px 20px;
  background-color: #fff;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission,
.vision {
  flex: 1;
  max-width: 48%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

/* Mission Section */
/* .mission::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffa500;
} */

.mission .icon {
  font-size: 50px;
  color: #ffa500;
  margin-bottom: 20px;
}

/* Vision Section */
/* .vision::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #17a2b8; 
} */

.vision .icon {
  font-size: 50px;
  color: #17a2b8;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  /* color: #555; */
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .mission,
  .vision {
    max-width: 100%;
  }

  .mission .icon,
  .vision .icon {
    font-size: 40px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }
}

/* Team members section */
/* Scope container so it doesn't fight with site-wide .container */
.team-section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* Heading */
.team-section h2{
  display:inline-block;
  margin: 40px 0 34px;
  font-size:32px; color:#333;
  position:relative; padding-bottom:12px;
}
.team-section h2::after{
  content:""; position:absolute; left:0; right:0; margin:0 auto; bottom:-2px;
  width:100%; height:4px; background:#ffa500; border-radius:2px;
}

/* GRID — full width + equal margins */
.team-section .team-members{
  display:grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr)); /* desktop */
  gap: 24px;
  margin-inline: auto;            /* center the grid block */
  width: 100%;
  justify-items: stretch;         /* items start from left, no drifting */
}

/* Card */
.team-section .team-member{
  width: 100%;                    /* fill grid cell */
  background:#f8f9fa;
  border-radius:12px;
  box-shadow:0 4px 8px rgba(0,0,0,.08);
  overflow:hidden;
  position:relative;
  transition:transform .25s, box-shadow .25s;
  cursor:pointer;
}
.team-section .team-member:hover{
  transform: translateY(-8px);
  box-shadow:0 12px 22px rgba(0,0,0,.18);
}

/* Image: desktop fill; small screens no-cut */
.team-section .team-member img{
  width:100%;
  /* aspect-ratio: 16 / 10;          */
  object-fit: cover;              /* desktop: fill nicely */
  display:block;
  transition: transform .3s;
}
.team-section .team-member:hover img{ transform: scale(1.03); }

/* Info overlay */
.team-section .member-info{
  position:absolute; left:12px; right:12px; bottom:12px;
  padding:10px 12px; border-radius:8px;
  background:rgba(0,0,0,.72); color:#fff;
  transform: translateY(40px); opacity:0; transition: all .25s;
}
.team-section .team-member:hover .member-info{ transform: translateY(0); opacity:1; }
.team-section .member-info h3{ font-size:20px; margin:0 0 4px; }
.team-section .member-info p{ font-size:13px; margin:0; }

/* Tablet: exactly 2 cards; images not cut */
@media (min-width: 600px) and (max-width: 991px){
  .team-section .team-members{
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
  }
  .team-section .team-member img{
    object-fit: contain;          /* NO CROP on tablet */
    background:#eaeef3;
    aspect-ratio: auto;           /* let natural ratio define height */
  }
}

/* Mobile: 1 card; images not cut */
@media (max-width: 599px){
  .team-section .team-members{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .team-section h2{ font-size:28px; }
  .team-section .team-member img{
    object-fit: contain;          /* NO CROP on mobile */
    background:#eaeef3;
    aspect-ratio: auto;
  }
}



/* Certifications Section */
.certifications {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  /* justify-content: center; */
}

/* Title Styling */
h2 {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
} 

h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ffa500; 
} 

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-right: 10%;
    margin-left: 10%;
}

.certification-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid #fff;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.certification-card .icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.certification-card .title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* PDF Link Icon Styling */
.pdf-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-icon {
  width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    padding-bottom: 10px;
}

.certification-card:hover .pdf-icon {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }
}
/* ============================================================================== */
/* sugar  */
.food_products_main_wrapper {
  display: flex;
  align-items: stretch;
  /*gap: 24px;*/
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Sidebar */
.food_categories_navigation_panel {
  flex: 0 0 300px; /* fixed width on laptop + tablet */
  max-width: 300px;
  background: #ffffff;
  border-right: 1px solid #e0e0e0;
  padding: 0;
  margin-left: 15px;
}

/* Menu items */
.category_menu_list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #333;
}
.category_menu_list_item:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
}
.category_menu_list_item.selected_category {
  background-color: #e67e22;
  color: #fff;
  border-left: 4px solid #d35400;
}
.category_menu_list_item.selected_category:hover {
  background-color: #d35400;
}
.category_navigation_arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.category_menu_list_item:hover .category_navigation_arrow {
  transform: translateX(3px);
}

/* Content area */
.product_showcase_area {
  flex: 1 1 auto;
  min-width: 0; /* prevent horizontal scroll */
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.product_details_content_wrapper {
  text-align: center;
  max-width: 500px;
}

/* Product image */
.featured_product_image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.featured_product_image:hover {
  transform: scale(1.05);
}

/* Product text */
.product_heading_title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}
.product_details_description {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 5%;
}

/* Brochure */
.brochure_download_section-1 {
  margin-top: 30px;
  padding: 20px;
  background: #34495e;
  border-radius: 8px;
  color: #fff;
  /* margin-right: 15px; */
}

.brochure_download_section {
    margin-top: 30px;
    padding: 20px;
    background: #34495e;
    border-radius: 8px;
    color: #fff;
    margin-right: 15px;
    
}

.brochure_download_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c3e50;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
}
.brochure_download_button:hover {
  background: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.download_button_icon {
  margin-right: 8px;
  font-size: 18px;
}

/* ===== Tablet fine-tune (keep 2 columns) ===== */
@media (min-width: 576px) and (max-width: 991.98px) {
  .food_categories_navigation_panel {
    flex-basis: 280px;
    max-width: 280px;
    margin-left: 15px;
  }
  .product_showcase_area {
    padding: 28px;
  }
}
/* ===== Mobile (<576px): stacked layout ===== */
@media (max-width: 575.98px) {
  .food_products_main_wrapper {
    flex-direction: column;
    gap: 16px;
    margin: 10px;
  }
  .food_categories_navigation_panel {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }
  .product_showcase_area {
    padding: 20px;
  }
  .brochure_download_section {
    margin-right: 30px;
}
}

/* ==================================================================== */
/* General Styling */
/* ===== Product Details Section ===== */
.product_details_section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

/* Sugar Product Details Section */
.sugar_product_details {
  flex: 2;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /*margin-right: 15px;*/
}

.product_heading {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.product_description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

/* Images row */
.product_images_wrapper {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product_image {
  width: 32%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product_features {
  font-size: 1rem;
  color: #555;
}
.product_features h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}
.product_features ul {
  list-style-type: disc;
  padding-left: 20px;
}
.product_features li {
  margin-bottom: 5px;
}

/* ===== Tablet (≥576px & ≤991px) — 2-column layout same as laptop ===== */
@media (min-width: 576px) and (max-width: 991.98px) {
  .product_details_section {
    flex-direction: row;
    gap: 20px;
  }
  .sugar_product_details {
    padding: 18px;
    margin-right: 15px;
  }
  .product_images_wrapper {
    flex-wrap: nowrap;
    gap: 15px;
    margin-right: 15px;
  }
  .product_image {
    width: 32%;
  }
}
@media (max-width: 768px) {
    .product_details_section {
        /*flex-direction: column;*/
        gap: 20px;
        /* padding: 15px; */
    }
}

/* ===== Mobile (<576px) — stacked layout ===== */
@media (max-width: 575.98px) {
  .product_details_section {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  .sugar_product_details {
    padding: 15px;
  }
  .product_heading {
    font-size: 1.5rem;
  }
  .product_description {
    font-size: 0.95rem;
  }
  .product_images_wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .product_image {
    width: 100%;
  }
  .product_features h4 {
    font-size: 1rem;
  }
  .product_features ul {
    padding-left: 14px;
  }
}

/* ===== Laptop (≥992px) — ensure 3 images in a row ===== */
@media (min-width: 992px) {
  .product_images_wrapper {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-right: 15px;
  }
  .product_image {
    width: 32%;
  }
}

/* ======================================================================= */

/* Contact Section Styling */
.contact_help_main_container {
  background: rgba(45, 45, 45, 0.95);
  backdrop-filter: blur(20px);
  border: 2px dashed rgba(255, 165, 0, 0.6);
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  /* max-width: 350px;
  width: 100%; */
  margin: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact_help_main_container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 165, 0, 0.8);
}

.contact_help_main_container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 165, 0, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.contact_help_main_container:hover::before {
  opacity: 1;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.contact_phone_icon_wrapper {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact_phone_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7b00, #ff9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 35px;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.contact_phone_icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(255, 123, 0, 0.6);
}

.contact_help_main_heading {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact_help_description_text {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 35px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.contact_phone_number_wrapper {
  position: relative;
  z-index: 2;
}

.contact_phone_number_link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #ff7b00, #ff9500);
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.3);
}

.contact_phone_number_link:hover {
  background: linear-gradient(135deg, #ff9500, #ffb000);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 123, 0, 0.5);
}

.contact_phone_number_link:active {
  transform: translateY(0);
}

.contact_phone_call_icon {
  font-size: 24px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

.contact_floating_particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact_particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 165, 0, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.contact_particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.contact_particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}
.contact_particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
}
.contact_particle:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
}
.contact_particle:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
}
.contact_particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
}
.contact_particle:nth-child(7) {
  left: 70%;
  animation-delay: 1.5s;
}
.contact_particle:nth-child(8) {
  left: 80%;
  animation-delay: 2.5s;
}
.contact_particle:nth-child(9) {
  left: 90%;
  animation-delay: 3.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(-10vh) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(0);
  }
}

.contact_additional_info {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.contact_working_hours {
  color: #e0e0e0;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact_email_info {
  color: #ff9500;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact_email_info:hover {
  color: #ffb000;
}

/* Responsive Styles for Mobile and Tablet */
@media (max-width: 768px) {
  .contact_help_main_container {
    padding: 10px;
    margin: 10px;
  }

  .contact_help_main_heading {
    font-size: 24px;
  }

  .contact_help_description_text {
    font-size: 16px;
  }

  .contact_phone_number_link {
    font-size: 18px;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .contact_help_main_container {
    padding: 10px;
    margin: 10px;
  }

  .contact_help_main_heading {
    font-size: 20px;
  }

  .contact_help_description_text {
    font-size: 14px;
  }

  .contact_phone_number_link {
    font-size: 16px;
    padding: 12px 20px;
  }
  .contact_email_info {
  color: #ff9500;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
}

/* ==================================================== */
/* policy  */
.pdf_docs_section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  padding: 40px 20px;
  margin: 0;
}

.pdf_container_wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.pdf_section_header {
  /* text-align: center; */
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  /* border: 1px solid rgb(32, 32, 32); */
}

.pdf_main_title {
  color: black;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgb(248, 245, 245, 0.7);
}

.pdf_subtitle_text {
  color: rgba(10, 10, 10, 0.9);
  font-size: 1.1rem;
  margin-top: 2%;
}

.pdf_main_content_wrapper {
  /* display: flex; */
  gap: 30px;
  margin-bottom: 40px;
  justify-content: center;
}

.pdf_help_container {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  padding: 25px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  flex: 0 0 25%;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.pdf_help_icon_box {
  font-size: 2rem;
  color: #ff6b35;
  text-align: center;
  margin-bottom: 15px;
}

.pdf_help_content_box {
  text-align: center;
}

.pdf_help_title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff6b35;
}

.pdf_help_description {
  color: white;
  margin-bottom: 15px;
  line-height: 1.6;
}

.pdf_contact_details {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd700;
  padding: 10px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Base link */
.pdf_contact_details a{
  color:#ffd700;                /* default gold */
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  transition: background-color .2s ease, box-shadow .2s ease;
}

/* ICON: bounce/tilt on hover */
.pdf_contact_details .icon{
  display:inline-flex;
  transition: transform .18s ease;
}
.pdf_contact_details a:hover .icon{
  transform: translateY(-1px) scale(1.08) rotate(-8deg);
}

/* NUMBER: color + underline on hover */
.pdf_contact_details .num{
  transition: color .18s ease, text-decoration-color .18s ease;
  text-decoration: underline transparent;
  text-underline-offset: 3px;
  text-decoration: none;
}
.pdf_contact_details a:hover .num{
  color:#ffffff;                /* text white on hover */
  text-decoration-color:#ffd700;/* gold underline */
  text-decoration: none;
}

.pdf_documents_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  flex: 1;
}

.pdf_document_card {
  background: rgba(231, 221, 221, 0.95);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pdf_document_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.pdf_document_card:hover::before {
  left: 100%;
}

.pdf_document_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
}

.pdf_file_icon_container {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.pdf_file_icon_container::after {
  content: "PDF";
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.pdf_file_icon_container::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 0 12px 0 12px;
  border-left: 2px solid #dc2626;
  border-bottom: 2px solid #dc2626;
}

.pdf_document_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf_download_button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  font-size: 0.95rem;
}

.pdf_download_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.pdf_section_footer {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  color: white;
}

.pdf_footer_text {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pdf_footer_link {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pdf_docs_section {
    padding: 20px 10px;
  }

  .pdf_main_title {
    font-size: 2rem;
  }

  .pdf_section_header {
    padding: 20px;
    margin-bottom: 30px;
  }

  .pdf_main_content_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .pdf_help_container {
    flex: none;
    position: static;
    padding: 20px;
  }

  .pdf_help_icon_box {
    margin-bottom: 10px;
  }

  .pdf_documents_grid {
    /* grid-template-columns: 1fr; */
    gap: 20px;
  }

  .pdf_document_card {
    padding: 20px;
  }

  .pdf_contact_details {
    font-size: 1.1rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .pdf_main_content_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .pdf_help_container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    flex: 0 0 25%;
    height: fit-content;
    position: sticky;
    top: 20px;
  }

  .pdf_documents_grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .pdf_main_title {
    font-size: 2.2rem;
  }
}

/* Animation for cards */
@keyframes pdfCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pdf_document_card {
  animation: pdfCardFadeIn 0.6s ease forwards;
}

.pdf_document_card:nth-child(even) {
  animation-delay: 0.1s;
}

.pdf_document_card:nth-child(3n) {
  animation-delay: 0.2s;
}

@keyframes pdfSlideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pdfSlideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes pdfRippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* ================================================================================================ */
/* investors  */
.nav-item.dropdown:hover .dropdown-menu {
  /*display: block;*/
  margin-top: 0; /* remove gap */
}
/* ======================================================= */
/* top scroll  */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  height: 50px;
  width: 50px;
  right: 20px;
  z-index: 99999;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #f57c00; /* Bootstrap blue */
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #0b5ed7;
}
