/*
Theme Name: OV Impex
Theme URI: https://ovimpex.in
Author: OV Impex
Author URI: https://ovimpex.in
Description: Premium Indian Spices Export WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ov-impex
*/

:root {
  --primary: rgb(0, 85, 164);
}
body {
  font-family: Arial, sans-serif;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #6b7a90;
  overflow-x: hidden;
}
h1 {
  font-size: 60px;
  font-weight: 800;
}
h2 {
  font-size: 40px;
  font-weight: 800;
}
h3 {
  font-size: 30px;
  font-weight: 700;
}
h4 {
  font-size: 24px;
  font-weight: 700;
}
h5 {
  font-size: 20px;
  font-weight: 700;
}
h6 {
  font-size: 16px;
  font-weight: 400;
}
a {
  text-decoration: none;
}
/* ================= TOP BAR ================= */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar a {
  color: #fff;
  margin-right: 12px;
  text-decoration: none;
  font-size: 12px;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  background: #fff;
  padding: 15px 0;
  transition: 0.3s;
}

.navbar-brand img {
  width: 80px;
}

.nav-link {
  color: #000 !important;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}
/* MEGA MENU BASE */
.mega-menu {
  border-radius: 0 0 15px 15px;
  background: #fff;
  border-top: 3px solid #0055a4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* TITLE */
.mega-title {
  font-weight: 700;
  color: #0055a4;
  margin-bottom: 10px;
  position: relative;
}

.mega-title:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #0055a4;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* LIST */
.mega-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mega-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 1px dashed #eee;
}

/* hover effect */
.mega-list li:hover {
  color: #0055a4;
  padding-left: 6px;
}

/* dropdown animation */
.dropdown-menu {
  animation: fadeDown 0.25s ease;
}

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

/* NAV ACTIVE COLOR */
.nav-link:hover {
  color: #0055a4 !important;
}
.btn-quote {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}
/* language dropdown */
.lang select {
  background: #fff;
  border: none;
  padding: 3px 8px;
  border-radius: 5px;
}
/* HEADER WRAPPER */
.main-header {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* TOP ROW */
.header-top {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* LOGO */
.logo img {
  height: 55px;
}

/* CONTACT */
.info-item {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-item i {
  color: #0055a4;
}

/* SOCIAL ICONS */
.social-mini a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5ff;
  color: #0055a4;
  margin-left: 5px;
  transition: 0.3s;
  text-decoration: none;
}

.social-mini a:hover {
  background: #0055a4;
  color: #fff;
  transform: translateY(-3px);
}

/* LANGUAGE */
.lang select {
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

/* NAVBAR */
.bottom-nav .nav-link {
  font-weight: 600;
  color: #222 !important;
  margin: 0 10px;
  position: relative;
}

.bottom-nav .nav-link:hover {
  color: #0055a4 !important;
}

.bottom-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #0055a4;
  transition: 0.3s;
}

.bottom-nav .nav-link:hover::after {
  width: 100%;
}
/* ================= HERO ================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgb(0 0 0 / 18%), rgb(0 0 0 / 32%)), url(images/banner.jpeg);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* floating animation */
.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 85, 164, 0.2);
  border-radius: 50%;
  top: 10%;
  left: -100px;
  animation: float 6s infinite ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgb(255 255 255 / 27%);
  border-radius: 50%;
  bottom: 10%;
  right: -80px;
  animation: float 8s infinite ease-in-out;
}

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

/* hero text */
.hero h1 {
  font-size: 60px;
  font-weight: 800;
  animation: fadeUp 1s ease;
}

.hero span {
  color: var(--primary);
}

.hero p {
  color: #f5f5f5;
  margin: 20px 0;
  animation: fadeUp 1.3s ease;
}

/* buttons */
.hero-btn a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  margin-right: 10px;
  font-weight: 600;
  transition: 0.3s;
  animation: fadeUp 1.6s ease;
  font-size: 16px;
}
.btn-blue {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn a:hover {
  transform: translateY(-5px);
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= FLOATING SOCIAL ================= */
.fixed-social {
  position: fixed;
  left: 15px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.fixed-social a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.fixed-social a:hover {
  transform: translateX(8px);
  background: #003f7d;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9999;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#contact {
  background: linear-gradient(135deg, #061423, #0b1f33, #020b17);
  position: relative;
  overflow: hidden;
}

/* glowing background blobs */
#contact::before,
#contact::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}

#contact::before {
  background: #00c6ff;
  top: -80px;
  left: -80px;
}

#contact::after {
  background: #0055a4;
  bottom: -80px;
  right: -80px;
}

/* bring content above glow */
#contact .container {
  position: relative;
  z-index: 2;
}

/* title */
#contact h2 {
  background: linear-gradient(90deg, #ffffff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* inputs */
#contact .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
  transition: 0.3s;
}

#contact .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#contact .form-control:focus {
  border-color: #00c6ff;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

/* button */
#contact .btn {
  background: linear-gradient(90deg, #0055a4, #00c6ff);
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  transition: 0.3s;
}

#contact .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 198, 255, 0.4);
}

/* contact info */
#contact p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 12px;
}

#contact i {
  color: #00c6ff;
  margin-right: 8px;
}

.copyright p {
  font-size: 14px;
  margin: 0;
}
.footer-section {
  background: #071a2f;
  color: #e6f0ff;
  padding: 60px 0 20px;
  position: relative;
}

/* subtle top line */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0055a4, #00c6ff);
}

/* logo */
.footer-logo img {
  width: 110px;
  margin-bottom: 15px;
}

/* text */
.footer-section p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* headings */
.footer-section h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

/* links clean look */
.footer-links a {
  display: block;
  color: #b8c7e0;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00c6ff;
  padding-left: 6px;
}

/* social icons clean */
.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
}

.social-icons a:hover {
  background: #00c6ff;
  transform: translateY(-4px);
}

/* divider */
.footer-section hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

/* copyright */
.copyright {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 10px;
}

/* container must be relative */
#gallery {
  position: relative;
  overflow: hidden;
}

/* particles layer */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* each particle */
.particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 198, 255, 0.6);
  border-radius: 50%;
  animation: moveUp 10s linear infinite;
}

/* random positions */
.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 20%; animation-delay: 2s; }
.particles span:nth-child(3) { left: 30%; animation-delay: 4s; }
.particles span:nth-child(4) { left: 40%; animation-delay: 1s; }
.particles span:nth-child(5) { left: 50%; animation-delay: 3s; }
.particles span:nth-child(6) { left: 60%; animation-delay: 5s; }
.particles span:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particles span:nth-child(8) { left: 80%; animation-delay: 1.5s; }

/* animation */
@keyframes moveUp {
  0% { bottom: -10px; opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; }
  100% { bottom: 100%; opacity: 0; transform: scale(1.2); }
}

#gallery {
  position: relative;
  background: radial-gradient(circle at top left, #0b1f33, #050b18 60%, #020814);
  color: #fff;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* hover effect */
.gallery-img:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(0, 198, 255, 0.2);
}
#gallery::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #00c6ff;
  filter: blur(130px);
  opacity: 0.15;
  top: -100px;
  left: -100px;
}

#gallery::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #0055a4;
  filter: blur(130px);
  opacity: 0.12;
  bottom: -120px;
  right: -120px;
}
#gallery h2 {
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ffffff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* SECTION */
.blogs {
  background: linear-gradient(135deg, #f6f9ff, #eef6ff);
}
.section-padding {
  padding: 80px 0;
}
.section-padding h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #0055a4, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-padding h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0055a4, #00c6ff);
  animation: lineGrow 1s ease;
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 80px; }
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

/* hover lift */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 85, 164, 0.15);
}

/* IMAGE BOX */
.blog-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* zoom on hover */
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* DARK OVERLAY */
.blog-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.blog-card:hover .blog-img::after {
  opacity: 1;
}

/* CONTENT */
.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h5 {
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 10px;
}

.blog-card:hover h5 {
  color: #0055a4;
}

.blog-content p {
  font-size: 14px;
  color: #6b7a90;
  line-height: 1.6;
}

/* keep content above particles */
#gallery .container {
  position: relative;
  z-index: 2;
}

/* gallery images */
.gallery-img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s;
}

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

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* image */
#lightbox img {
  max-width: 500px;
  max-height: 500px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  animation: zoom 0.3s ease;
}

/* zoom animation */
@keyframes zoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* close button */
#close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* navigation */
#prev,
#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

#prev { left: 20px; }
#next { right: 20px; }

/* zoom control box */
.zoom-controls {
  position: absolute;
  bottom: 25px;
  display: flex;
  gap: 10px;
}

/* icon buttons */
.zoom-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 85, 164, 0.9);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* hover effect */
.zoom-controls button:hover {
  background: #00c6ff;
  transform: translateY(-3px);
}
/* section background */
#products {
  background: linear-gradient(135deg, #f6f9ff, #eef6ff);
}

/* title */
#products h2 {
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0055a4, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* card */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
  display: block;
}

/* hover lift */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 85, 164, 0.2);
}

/* image box */
.product-img {
  height: 220px;
  overflow: hidden;
}

/* image */
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* zoom effect */
.product-card:hover img {
  transform: scale(1.1);
}

/* body */
.product-body {
  padding: 15px;
}

/* text */
.product-body h5 {
  font-weight: 700;
  color: #0b1f33;
  transition: 0.3s;
}

/* hover color change */
.product-card:hover h5 {
  color: #0055a4;
}

/* gradient border glow */
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(45deg, #0055a4, #00c6ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s;
}

.product-card:hover::after {
  opacity: 1;
}
/* SECTION BACKGROUND */
.about-section {
  background: linear-gradient(135deg, #f6f9ff, #eef6ff);
  position: relative;
  overflow: hidden;
}

/* floating glow background */
.about-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00c6ff;
  filter: blur(130px);
  opacity: 0.15;
  top: -120px;
  left: -120px;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #0055a4;
  filter: blur(130px);
  opacity: 0.12;
  bottom: -120px;
  right: -120px;
}

/* IMAGE BOX */
.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* image */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* hover zoom */
.about-img:hover img {
  transform: scale(1.08);
}

/* CONTENT BOX */
.about-content {
  padding: 20px;
}

/* TITLE */
.about-content h2 {
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0055a4, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-content p {
  color: #5b6b80;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #0055a4, #00c6ff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 85, 164, 0.2);
}

/* hover button */
.about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 85, 164, 0.3);
}
/* section background */
.proof-section {
  background: linear-gradient(135deg, #050b18, #071a2f, #020814);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* glowing background effect */
.proof-section::before,
.proof-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  filter: blur(140px);
  opacity: 0.15;
  border-radius: 50%;
  animation: floatGlow 8s infinite ease-in-out;
}

.proof-section::before {
  background: #00c6ff;
  top: -120px;
  left: -120px;
}

.proof-section::after {
  background: #0055a4;
  bottom: -120px;
  right: -120px;
  animation-delay: 2s;
}

/* animation */
@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(30px) scale(1.1); }
}

/* title */
.proof-section h2 {
  background: linear-gradient(90deg, #fff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtitle */
.sub-text {
  color: #b8c7d9;
  font-size: 15px;
}

/* box */
.proof-box {
  background: #fff;
  backdrop-filter: blur(12px);
  border-radius: 35px;
  padding: 45px 20px;
  text-align: center;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 22, 13, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}
.proof-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 178, 124, 0.08), transparent);
  opacity: 0;
  transition: 0.5s;
}

.proof-box:hover::before {
  opacity: 1;
}

.proof-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.proof-box img {
  width: 150px;
  margin: auto;
  transition: 0.5s;
  position: relative;
  z-index: 2;
}

/* icon */
.proof-box i {
  font-size: 30px;
  color: #00c6ff;
  margin-bottom: 15px;
}

/* heading */
.proof-box h3 {
  font-size: 20px;
  font-weight: 700;
}

/* text */
.proof-box p {
  font-size: 14px;
  color: #b8c7d9;
}
.carousel-inner {
  padding: 10px 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0055a4;
  border-radius: 50%;
  padding: 20px;
  background-size: 50%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 1;
}
.proof-section .text-muted {
  color: #fff !important;
}

.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/aboutus-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-img {
  border-radius: 15px;
  width: 100%;
}
/* HERO */
.contact-banner {
  height: 500px;
  background: url("images/contactus-banner.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

.banner-content h1 {
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

/* CONTACT BOX */
.contact-section {
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.4s;
  height: 100%;
  background: #fafafa;
}

.info-box:hover {
  transform: translateY(-8px);
  background: #0055a4;
  color: #fff;
}

.info-box i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: #0055a4;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.info-box:hover i {
  background: #fff;
  color: #0055a4;
}

.info-box h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* FORM */
.form-box {
  margin-top: 50px;
}

.form-control {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  box-shadow: none !important;
}

textarea.form-control {
  height: 160px;
  resize: none;
}

.submit-btn {
  background: #0055a4;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
}

.submit-btn:hover {
  background: #000;
}

.contact-img {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

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

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

/* IMAGE */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* CONTENT */
.blog-content {
  padding: 30px;
}

.blog-date {
  font-size: 14px;
  color: #ff9800;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #111;
}

.blog-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* BUTTON */
.read-more {
  text-decoration: none;
  color: #0055a4;
  font-weight: 700;
  transition: 0.4s;
  font-size: 16px;
  line-height: 1.5;
}

.read-more i {
  margin-left: 8px;
  transition: 0.4s;
}

.read-more:hover {
  color: #ff9800;
}

.read-more:hover i {
  transform: translateX(5px);
}

.expo-banner {
  position: relative;
  height: 500px;
  background: url("images/banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.expo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.expo-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 850px;
  padding: 20px;
}

.expo-banner-content span {
  display: inline-block;
  background: #d35400;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title span {
  color: #d35400;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* EXPO CARD */
.expo-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
  position: relative;
}

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

.expo-img {
  position: relative;
  overflow: hidden;
}

.expo-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.6s;
}

.expo-card:hover .expo-img img {
  transform: scale(1.1);
}

.expo-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d35400;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.expo-content {
  padding: 30px;
}

.expo-date {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.expo-date i {
  color: #d35400;
  margin-right: 6px;
}

.expo-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  line-height: 1.4;
}

.expo-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.expo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0055a4;
  font-weight: 700;
  transition: 0.3s;
}

.expo-btn:hover {
  color: #d35400;
}

.product-detail-page {
  background: #f5f7fb;
}

.product-gallery {
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.main-product-img {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.main-product-img img {
  width: 100%;
  border-radius: 18px;
}

/* THUMBNAIL */
.thumb-images {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}

.thumb-images img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid #eee;
  transition: 0.3s;
}

.thumb-images img:hover {
  border-color: #0b4ea2;
  transform: translateY(-4px);
}

/* PRODUCT INFO */
.product-info {
  background: #fff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.product-badge {
  display: inline-block;
  background: #edf4ff;
  color: #0b4ea2;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.product-info h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}

.product-short {
  color: #666;
  margin-bottom: 20px;
}

/* PRODUCT META */
.product-meta {
  padding: 0;
  margin: 0 0 35px;
}

.product-meta li {
  list-style: none;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 14px;
}

.product-meta strong {
  width: 150px;
  display: inline-block;
  color: #111;
}

/* BUTTONS */
.btn-inquiry {
  background: #0b4ea2;
  color: #fff;
  padding: 10px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  font-size: 16px;
}

.btn-inquiry:hover {
  background: #083c7d;
  color: #fff;
}

.btn-download {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  padding: 10px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  font-size: 16px;
}

.btn-download:hover {
  background: #111;
  color: #fff;
}

/* SPECIFICATION */
.specification-section {
  margin-top: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: #0b4ea2;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

.spec-box {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid #eee;
}

.spec-table th {
  width: 35%;
  background: #f4f8fd;
  color: #0b4ea2;
  padding: 18px 25px;
  font-weight: 700;
}

.spec-table td {
  padding: 18px 25px;
  color: #555;
}

/* PACKAGING */
.packaging-box {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  margin-top: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.packaging-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

.pack-list {
  padding: 0;
  margin: 0;
}

.pack-list li {
  list-style: none;
  background: #f8fbff;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 5px solid #0b4ea2;
  transition: 0.3s;
}

.pack-list li:hover {
  transform: translateX(5px);
  background: #eef6ff;
}

.pack-list strong {
  color: #0b4ea2;
}

.pack-list span {
  color: #555;
  font-weight: 500;
}

/* WHY CHOOSE */
.why-choose-section {
  margin-top: 90px;
}

.why-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.why-box::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(11, 78, 162, 0.05);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.why-box:hover {
  transform: translateY(-8px);
}

.why-icon {
  width: 85px;
  height: 85px;
  background: #0b4ea2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 30px;
  margin-bottom: 22px;
}

.why-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-box p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* PRODUCT SLIDER */
.product-slider {
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.product-slider .carousel-inner {
  border-radius: 18px;
}

.product-slider .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
}

/* ARROWS */
.product-slider .carousel-control-prev,
.product-slider .carousel-control-next {
  width: 45px;
  height: 45px;
  background: #0b4ea2;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.product-slider .carousel-control-prev { left: 15px; }
.product-slider .carousel-control-next { right: 15px; }

.product-slider .carousel-control-prev-icon,
.product-slider .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* THUMBNAIL */
.thumb-images {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.thumb-images button {
  border: none;
  background: none;
  padding: 0;
}

.thumb-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #eee;
  transition: 0.3s;
}

.thumb-images img:hover {
  border-color: #0b4ea2;
  transform: translateY(-3px);
}

/* MAIN BOX */
.blog-details {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.blog-main-img {
  overflow: hidden;
  border-radius: 20px;
}

.blog-main-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* META */
.blog-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin: 25px 0 15px;
}

.blog-meta span {
  color: #666;
  font-size: 15px;
}

.blog-meta i {
  color: #ff9800;
  margin-right: 8px;
}

/* TITLE */
.blog-title {
  font-size: 42px;
  font-weight: 800;
  color: #0055a4;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* TEXT */
.blog-details p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* QUOTE */
.blog-quote {
  background: #0055a4;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
}

.blog-quote i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff9800;
}

/* LIST */
.blog-list {
  padding-left: 20px;
}

.blog-list li {
  margin-bottom: 12px;
  color: #444;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-box h4 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #0055a4;
  font-weight: 700;
}

/* SEARCH */
.search-box {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
}

.search-box input {
  width: 100%;
  border: none;
  background: #f5f5f5;
  padding: 15px;
  outline: none;
}

.search-box button {
  width: 60px;
  border: none;
  background: #0055a4;
  color: #fff;
}

/* RECENT POST */
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post img {
  width: 90px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.recent-post a {
  display: block;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-post span {
  font-size: 14px;
  color: #888;
}

/* CATEGORY */
.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  border-bottom: 1px solid #eee;
}

.category-list li a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.category-list li a:hover {
  color: #ff9800;
  padding-left: 8px;
}
/* card */
.team-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: #7c3aed;
}

/* image */
.team-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid rgba(124, 58, 237, 0.5);
}
.team-section {
  background: linear-gradient(135deg, #f6f9ff, #eef6ff);
}
/* name */
.team-card h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

/* role */
.team-card p {
  color: #aaa;
  margin: 0;
  font-size: 14px;
}

.dropdown-menu {
  background: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
}

.dropdown-item {
  color: #0055a4;
  padding: 8px 12px;
  transition: 0.3s;
}

.dropdown-item:hover {
  color: #000;
  border-radius: 6px;
}

/* MOBILE */
@media (max-width: 991px) {
  .blog-details-section {
    padding: 70px 0;
  }
  .navbar {
    flex-wrap: nowrap !important;
  }
  .blog-details {
    padding: 25px;
  }
  .blog-title {
    font-size: 30px;
  }
  .blog-main-img img {
    height: 300px;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .blog-img img {
    height: 240px;
  }
  .proof-box {
    height: 200px;
    width: 200px !important;
    margin: auto;
  }
  .hero-about,
  .contact-banner {
    height: 400px;
    text-align: center;
  }
  .banner-content h1 {
    font-size: 45px;
  }
  .contact-card {
    padding: 30px 20px;
  }
  .expo-banner {
    height: 420px;
  }
  .product-info {
    padding: 25px;
    margin-top: 20px;
  }
  .product-info h1 {
    font-size: 32px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .packaging-box {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .expo-banner {
    height: 380px;
  }
  .expo-img img {
    height: 230px;
  }
  .section-padding h2 {
    font-size: 32px;
    margin-bottom: 20px !important;
  }
  .blog-card {
    text-align: center;
  }
  .mega-title {
    font-size: 16px;
  }
  .hero::before {
    width: 200px;
    height: 200px;
  }
  .hero::after {
    width: 100px;
    height: 100px;
    right: -30px;
    bottom: 0;
  }
  .section-padding {
    padding: 40px 0;
  }
  .proof-box {
    height: 240px;
    width: 240px !important;
  }
  .hero {
    text-align: center;
  }
  .hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-btn a {
    padding: 10px 12px;
    font-size: 12px;
  }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  h5 { font-size: 18px; }
  .contactDetails {
    gap: 3px !important;
  }
  .lang select {
    padding: 5px;
    font-size: 12px;
  }
  .navbar-brand img {
    width: 60px;
    height: auto !important;
  }
  .thumb-images {
    justify-content: center;
  }
  .thumb-images img {
    width: 65px;
    height: 65px;
  }
  .pack-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .btn-inquiry,
  .btn-download {
    width: 100%;
    text-align: center;
  }
  .product-slider .carousel-item img {
    height: 320px;
  }
  .thumb-images img {
    width: 60px;
    height: 60px;
  }
  .social-mini {
    gap: 0 !important;
  }
  .social-mini a {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .navbar-brand {
    margin-right: 2px !important;
  }
  .navbar-brand img {
    width: 50px;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: block !important;
  }
  .bottom-nav .nav-link::after {
    display: none;
  }
}
