/* 
 * PRISHA ENTERPRISE - Main Stylesheet
 * Industry: Import Export, Shipping, Cargo & Logistics Agency
 * Author: Senior Frontend Architect & UI/UX Designer
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #0B2C73; /* Navy Blue */
  --primary-rgb: 11, 44, 115;
  --secondary-color: #F36A10; /* Orange */
  --secondary-rgb: 243, 106, 16;
  --accent-green: #2E9B42; /* Accent Green */
  --light-bg: #F8F7F5; /* Light Beige/White */
  --light-beige: #F8F5F0; /* Alternate Background */
  --white: #FFFFFF;
  --dark-text: #1F2937; /* Dark Gray */
  --dark-text-muted: #4B5563;
  --border-color: #E8E8E8;
  --font-sans: 'Poppins', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(11, 44, 115, 0.05);
  --shadow-lg: 0 20px 40px rgba(11, 44, 115, 0.08);
  --shadow-hover: 0 30px 60px rgba(11, 44, 115, 0.12);
  --border-radius-card: 20px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

p {
  font-weight: 400;
  color: var(--dark-text-muted);
}

/* Orange Gradient Button & Corporate Outlines */
.btn-primary-gradient {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #FF8533 100%);
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(243, 106, 16, 0.3);
  transition: var(--transition-smooth);
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 106, 16, 0.4);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.btn-outline-blue:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 44, 115, 0.15);
}

/* Floating Elements & Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* 1. Top Bar Styles */
.top-bar {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.top-bar a:hover {
  color: var(--secondary-color);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0 12px;
  vertical-align: middle;
}

.top-badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* 2. Sticky Navbar & Premium Navigation */
.main-navbar {
  background-color: var(--white);
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  z-index: 1030;
}

.main-navbar.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Logo Design */
.navbar-brand .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-svg {
  width: 48px;
  height: 48px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Menu Navigation Links */
.navbar-nav .nav-link {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 16px;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

/* Premium Dropdowns & Hover Mechanics */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 15px 0;
  margin-top: 10px !important;
  animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-item {
  font-weight: 500;
  padding: 8px 24px;
  color: var(--dark-text-muted);
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
  padding-left: 30px;
}

/* Multi-level Dropdown (3-level menu) */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px !important;
  margin-left: 0px;
  border-radius: 12px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Mega Menu Implementation */
.dropdown-mega {
  position: static !important;
}

.mega-menu-content {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  padding: 30px !important;
  border-radius: var(--border-radius-card);
}

.mega-menu-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 6px;
  display: inline-block;
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.mega-menu-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.mega-menu-link i {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

/* Mega Menu Image Block */
.mega-menu-promo {
  background: linear-gradient(135deg, var(--primary-color) 0%, #031336 100%);
  border-radius: 12px;
  padding: 20px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mega-menu-promo::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(243, 106, 16, 0.1);
  border-radius: 50%;
}

/* Mobile Offcanvas Customization */
.offcanvas {
  background-color: var(--white);
  border-left: 1px solid var(--border-color);
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-color);
}

/* 3. Hero Banner Style */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: calc(100vh - 100px);
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(11, 44, 115, 0.9) 0%, rgba(11, 44, 115, 0.4) 60%, rgba(11, 44, 115, 0.2) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-slide-content .tagline-pill {
  background-color: rgba(243, 106, 16, 0.15);
  border: 1px solid rgba(243, 106, 16, 0.3);
  color: #FFAE73;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-slide-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-slide-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

/* World Map Background overlay on hero */
.hero-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 20px 20px;
  z-index: 1;
  pointer-events: none;
}

/* Floating Stats in Hero */
.hero-floating-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 5;
}

.glass-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  color: var(--white);
  transition: var(--transition-smooth);
}

.glass-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.glass-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 2px;
  display: block;
}

.glass-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Carousel Control Aesthetics */
.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.hero-carousel .swiper-button-next::after,
.hero-carousel .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Section Header Structure */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 24px;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--secondary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-desc {
  max-width: 700px;
  margin: 15px auto 0 auto;
  font-size: 1.05rem;
}

/* 4. About Section Styles */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-img-main {
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 450px;
}

.about-img-floating {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.experience-badge-stamp {
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-10deg);
}

.experience-badge-stamp .number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge-stamp .text {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tabbed Vision/Mission Styles */
.about-nav-tabs .nav-link {
  background-color: var(--light-bg);
  color: var(--dark-text-muted);
  border: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.about-nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* CEO Message Card */
.ceo-message-card {
  background-color: var(--light-beige);
  border-left: 5px solid var(--secondary-color);
  border-radius: 12px;
  padding: 24px;
  margin-top: 30px;
}

.ceo-message-card p {
  font-style: italic;
  font-size: 0.95rem;
}

.ceo-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.ceo-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Credentials List */
.credential-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
}

.credential-tag i {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.credential-tag span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* 5. Our Services Style */
.services-section {
  background-color: var(--light-bg);
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 44, 115, 0.15);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(11, 44, 115, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-color);
}

.service-icon-box i {
  font-size: 2rem;
  color: var(--primary-color);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box i {
  color: var(--white);
}

.service-icon-box::after {
  content: '';
  position: absolute;
  top: 5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  z-index: 1;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box::after {
  transform: scale(1.5);
  background-color: var(--secondary-color);
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card-desc {
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-card-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.service-card-link:hover {
  color: var(--primary-color);
  gap: 12px;
}

/* Service Navigation Filters */
.service-filter-pill {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  gap: 8px;
  margin-bottom: 40px;
}

.service-filter-btn {
  background: transparent;
  border: none;
  color: var(--dark-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 24px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.service-filter-btn.active, .service-filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* 6. Product Categories Style */
.products-section {
  background-color: var(--white);
}

.product-category-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--dark-text-muted);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  margin-right: 15px;
  transition: var(--transition-smooth);
}

.product-category-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--secondary-color);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card-body {
  padding: 25px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}

.product-list li {
  font-size: 0.88rem;
  color: var(--dark-text-muted);
  padding: 6px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-list li i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 7. Why Choose Us Style */
.why-choose-section {
  background-color: var(--light-beige);
}

.why-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.why-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary-color);
}

.why-icon-box {
  width: 55px;
  height: 55px;
  background-color: rgba(243, 106, 16, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-box i {
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* 8. Countries We Serve Style */
.countries-section {
  background: radial-gradient(circle at center, rgba(11, 44, 115, 0.03) 0%, var(--white) 80%);
}

.interactive-map-container {
  position: relative;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  height: 480px;
}

.country-card-badge {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
}

.country-card-badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.flag-icon-circle {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* 9. Working Process Style */
.timeline-steps-container {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-line-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.process-step-node {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number-circle {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 4px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step-node:hover .step-number-circle,
.process-step-node.active .step-number-circle {
  border-color: var(--secondary-color);
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(243, 106, 16, 0.4);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--dark-text-muted);
  max-width: 150px;
  margin: 0 auto;
}

/* 10. Statistics Style */
.stats-counter-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #051945 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(243, 106, 16, 0.05);
  border-radius: 50%;
}

.stat-icon {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
}

/* 11. Certifications Style */
.certifications-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}

.certification-logo-card {
  background-color: var(--light-bg);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.certification-logo-card:hover {
  background-color: var(--white);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.cert-logo-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cert-logo-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.cert-logo-desc {
  font-size: 0.65rem;
  color: var(--dark-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* 12. Testimonials Style */
.testimonials-section {
  background-color: var(--light-beige);
}

.testimonial-slide-card {
  background-color: var(--white);
  border-radius: var(--border-radius-card);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  margin: 15px;
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: rgba(243, 106, 16, 0.1);
}

.star-rating {
  color: #FBBF24;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark-text-muted);
  margin-bottom: 25px;
}

.client-profile-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.client-region {
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
}

/* 13. Gallery Style */
.gallery-section {
  background-color: var(--white);
}

.gallery-filter-pill {
  display: inline-flex;
  gap: 8px;
  background-color: var(--light-bg);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--dark-text-muted);
  transition: var(--transition-smooth);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 280px;
  margin-bottom: 30px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 44, 115, 0.1) 0%, rgba(11, 44, 115, 0.85) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: var(--white);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.gallery-overlay-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  font-weight: 600;
}

.gallery-zoom-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.gallery-card:hover .gallery-zoom-btn {
  transform: translateY(0);
  opacity: 1;
}

.gallery-zoom-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* 14. Latest News Style */
.blog-section {
  background-color: var(--light-bg);
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.blog-date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: var(--shadow-md);
}

.blog-body {
  padding: 25px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--dark-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.35;
}

.blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.blog-title a:hover {
  color: var(--secondary-color);
}

.blog-link {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  gap: 10px;
  color: var(--primary-color);
}

/* 15. FAQ Accordion Style */
.faq-section {
  background-color: var(--white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
  padding: 20px 25px;
  background-color: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B2C73'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F36A10'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 25px;
  font-size: 0.95rem;
  color: var(--dark-text-muted);
}

/* 16. Contact & Live Calculator Section */
.contact-calculator-section {
  background-color: var(--light-beige);
}

/* Freight Calculator Panel */
.calculator-card {
  background: var(--white);
  border-radius: var(--border-radius-card);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.calc-result-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #051945 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
}

.calc-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.calc-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Details Info List */
.contact-info-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(11, 44, 115, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.92rem;
  color: var(--dark-text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-info-text a:hover {
  color: var(--secondary-color);
}

/* Glassmorphism Map Wrapper */
.map-iframe-wrapper {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

/* 17. Footer Styles */
.footer {
  background-color: #051333;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
}

.footer-social-box {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social-icon:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 30px;
  padding: 12px 24px;
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-color);
  box-shadow: none;
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  background-color: #030e26;
  font-size: 0.85rem;
}

.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Floating Actions: WhatsApp and Back to Top */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  color: var(--white);
}

/* Modals & Popups styling */
.premium-modal .modal-content {
  border-radius: var(--border-radius-card);
  border: none;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.premium-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #051945 100%);
  color: var(--white);
  border-bottom: none;
  padding: 25px 30px;
}

.premium-modal .modal-header .btn-close {
  filter: invert(1);
}

.premium-modal .modal-body {
  padding: 30px;
}
