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

/* CSS Variables - Root Styles */
:root {
  --primary-blue: #204d85;
  --secondary-blue: #003b6f;
  --accent-blue: #209dd8;
  --light-gray: #f3f5fa;
  --white: #fff;
  --accent-orange: #FF6B1A;
  --border-color: #e0e0e0;
  --base-font-size: 16px;
  --scale-ratio: 1.2;
  --section-spacing: 5rem;
  --card-spacing: 1.5rem;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Font Size Adjustments */
@media (max-width: 992px) {
  :root {
    --base-font-size: 15px;
  }
  
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --base-font-size: 14px;
  }
  
  .section-container {
    padding: 0 15px;
    position: relative;
    z-index: 1;
  }
  
  .contact .info h4 {
    font-size: 1.25rem;
  }
  
  .footer .footer-top .footer-info .logo span {
    font-size: 1.5rem;
  }
}

/* Body and Global Styles */
body {
  font-family: "Inter", sans-serif;
  color: #444;
  font-size: var(--base-font-size);
  background: linear-gradient(27deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 77%, rgba(236, 242, 255, 0.889815) 100%);
  line-height: 1.6;
}

/* Link Styles */
a {
  color: #37517e;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #204d85;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #204d85;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #204d85;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
}

.back-to-top:hover {
  background: #7097d7;
  color: #fff;
  transform: translateY(-5px);
}

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

/* Header Styles */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #204d85;
}

#header .logo {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 50px;
}

/* Navigation Styles */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  padding: 10px 15px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #b4c9fd;
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 15px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  background-color: var(--accent-orange);
  color: var(--white);
  transition: all 0.3s ease;
  animation: buttonPulse 6s ease-in-out infinite;
}

.navbar .getstarted:hover {
  color: #fff;
  background-color: #E85F0C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navbar ul {
    display: none;
  }
}

/* Mobile Navigation */
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
  padding: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--primary-blue);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--light-gray);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--accent-blue);
}

.navbar-mobile .getstarted {
  margin: 15px;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: var(--light-gray);
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary-blue);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/* Section Styles */
section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
}

.section-bg {
  background-color: var(--light-gray);
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-blue);
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-blue);
}

.section-title p {
  margin-bottom: 0;
}

/* =================== MOVING GRADIENT HERO SECTION =================== */
#hero {
  width: 100%;
  height: 45vh;
  position: relative;
  padding: 0;
  overflow: hidden;
}

#hero video {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      180deg, 
      rgba(32, 77, 133, 0.5) 0%,           /* Menu color top */
      transparent 30%,                      
      transparent 70%,                      
      rgba(32, 77, 133, 0.5) 100%          /* Menu color bottom */
    ),
    linear-gradient(
      90deg, 
      rgba(32, 77, 133, 0.4) 0%,           /* Menu color left */
      transparent 25%,                      
      transparent 75%,                      
      rgba(32, 77, 133, 0.4) 100%          /* Menu color right */
    ),
    radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

#hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

/* Enhanced text animations */
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: textFloat 10s ease-in-out infinite;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: textFloat 10s ease-in-out infinite 0.5s;
}

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

/* Ship image floating animation */
#hero .hero-img img {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: shipFloat 12s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes shipFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-15px) rotate(1deg);
  }
  50% { 
    transform: translateY(-8px) rotate(0deg);
  }
  75% { 
    transform: translateY(-20px) rotate(-1deg);
  }
}

/* Enhanced CTA button animation */
.cta-btn,
.cta-button {
  animation: buttonPulse 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes buttonPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(39, 127, 245, 0.3); 
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 6px 20px rgba(39, 127, 245, 0.4); 
  }
}

/* Responsive adjustments for hero */
@media (max-width: 991px) {
  #hero {
    height: 80vh;
    text-align: center;
  }
  
  #hero .hero-img {
    text-align: center;
    margin-top: 30px;
  }
  
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  #hero h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  
  #hero .hero-img img {
    width: 80%;
  }
  
  /* Reduce animation intensity on mobile for better performance */
  #hero::before {
    animation-duration: 20s;
  }
  
  @keyframes shipFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
}

/* Clients Section */
.clients {
  padding: 20px 0;
  background-color: var(--light-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.clients .swiper {
  padding: 10px 0;
  width: 100%;
}

.clients .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.clients .swiper-slide img {
  max-width: 120px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100);
  transition: all 0.3s ease;
  opacity: 0.7;
  margin: 0 auto;
}

.clients .swiper-slide:hover img{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.05);
}

/* Enhanced smooth scrolling */
.clients .swiper-wrapper {
  transition-timing-function: linear;
}

/* Ensure smooth transitions */
.clients .swiper-slide {
  user-select: none;
}

/* Custom pagination styling */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: var(--primary-blue);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--accent-blue);
  opacity: 1;
  transform: scale(1.2);
}

/* About Content */
.about-content {
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content a {
  color: var(--accent-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-content a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* IAA Section */
.IAA {
  background: transparent;
}

.iaa-logo {
  display: block;
  transition: all 0.3s ease;
  text-align: center;
}

.iaa-logo img {
  max-width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.iaa-logo:hover img {
  transform: scale(1.02);
}

.iaa-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.iaa-content {
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 80%, rgba(247, 255, 3, 0.1) 85%, rgba(0, 198, 7, 0.1) 90%, rgba(245, 5, 5, 0.1) 95%);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.iaa-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.read-more {
  display: inline-block;
  color: var(--accent-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.read-more i {
  font-size: 14px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a i {
  font-size: 20px;
}

.social-links a:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-links .social-links a {
  width: 36px;
  height: 36px;
}

/* Why Us Section */
/* Why Us Section Background */
.why-us {
    position: relative;
    background-image: url('../img/globe.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 100%;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .why-us {
        background-size: auto 40%;
    }
}

@media (max-width: 576px) {
    .why-us {
        background-size: auto 35%;
    }
}

.why-us .accordion-list {
  padding: 0;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li {
  margin-bottom: 20px;
}

.why-us .accordion-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 0 20px 0;
}

.why-us .accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.why-us .accordion-header {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 25px 20px 60px;
  color: var(--primary-blue);
  background-color: var(--white);
  margin: 0;
  cursor: default;
}

.why-us .accordion-header span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
}

.why-us .accordion-content {
  padding: 0 25px 0 60px;
}

.why-us .accordion-content p {
  margin-bottom: 0;
  line-height: 1.8;
}

.why-us-img {
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.why-us-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all 0.5s ease;
}

@media (max-width: 991px) {
  .why-us-img {
    margin-bottom: 30px;
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .why-us .accordion-header {
    font-size: 16px;
    padding: 15px 20px 15px 50px;
  }
  
  .why-us .accordion-header span {
    left: 15px;
    font-size: 16px;
  }
  
  .why-us .accordion-content {
    padding: 0 20px 0 50px;
  }
  
  .why-us-img {
    min-height: 250px;
  }
}

@media (max-width: 575px) {
  .why-us .accordion-header {
    font-size: 15px;
    padding: 15px 15px 15px 45px;
  }
  
  .why-us .accordion-header span {
    left: 12px;
    font-size: 15px;
  }
  
  .why-us .accordion-content {
    padding: 0 15px 0 45px;
  }
}

/* Service Cards */
.service-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.service-card {
  height: 100%;
  padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

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

.service-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-card:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--accent-blue);
}

.service-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.service-text {
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-dark);
}

.service-text:last-child {
  margin-bottom: 0;
}

.service-more {
  text-align: right;
}

.service-more i {
  font-size: 20px;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

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

.service-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  transition: all 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.02);
}

/* CTA Section */
.cta {
  position: relative;
  background: linear-gradient(90deg, var(--primary-blue) 0%, rgba(18, 50, 90, 0.85) 20%, rgba(32, 77, 133, 0.6) 40%, rgba(32, 77, 133, 0.4) 60%, rgba(32, 77, 133, 0.2) 80%, rgba(32, 77, 133, 0.9) 100%), url("../img/lot.webp") fixed center center;
  background-size: cover;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-icon {
  display: inline-block;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.cta-btn:hover .cta-icon {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .cta-btn-container {
    text-align: center;
    margin-top: 30px;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

.cta-button:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-container {
  margin-top: 1.5rem;
}

/* Location Cards */
.location-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

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

.location-image {
  width: 100px;
  height: 70px;
  min-width: 100px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  margin-right: 20px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.location-info {
  flex: 1;
}

.location-info h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 10px;
}

.location-info h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-blue);
}

.location-info p {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 14px;
}

.location-info a {
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

.location-info a:hover {
  color: var(--primary-blue);
}

@media (max-width: 576px) {
  .location-card {
    flex-direction: column;
  }
  
  .location-image {
    width: 100%;
    height: 140px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .location-info h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .location-info {
    text-align: center;
  }
}

/* Team Section */
.team .member {
  position: relative;
  padding: 30px;
  background: #fff;
  transition: 0.5s;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  margin-bottom: 30px;
}

.team .member .pic {
  overflow: hidden;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 5px;
  border: 1px solid var(--border-color);
  margin-right: 10px;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
}

.team .member:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--primary-blue);
}

.team .member span {
  display: block;
  font-size: 16px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
  color: var(--secondary-blue);
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-blue);
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.team .member a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.team .member a:hover {
  color: var(--primary-blue);
}

/* Team Responsive Styles */
@media (max-width: 992px) {
  .team .member {
    padding: 20px;
  }
  
  .team .member .pic {
    width: 90px;
    height: 65px;
  }
  
  .team .member .member-info {
    padding-left: 15px;
  }
  
  .team .member h4 {
    font-size: 18px;
  }
  
  .team .member span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .team .d-flex.align-items-start {
    flex-direction: row;
    align-items: flex-start !important;
  }
  
  .team .member .member-info {
    padding-left: 15px;
    flex: 1;
  }
}

@media (max-width: 576px) {
  .team .member {
    padding: 15px;
  }
  
  .team .member .pic {
    width: 75px;
    height: 55px;
    min-width: 75px;
  }
  
  .team .member .member-info {
    padding-left: 10px;
  }
  
  .team .member h4 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  
  .team .member span {
    font-size: 13px;
    padding-bottom: 8px;
  }
  
  .team .member p {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Service Card Additional Styles */
.service-card p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-card p:last-child {
  margin-bottom: 0;
}

/* Enhanced Container Dimensions Section */
.enhanced-container-dimensions {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
  position: relative;
}

.enhanced-container-dimensions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(32, 77, 133, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(32, 157, 216, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.enhanced-container-dimensions .container {
  position: relative;
  z-index: 1;
}

.enhanced-container-dimensions .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.table-icon {
  color: var(--accent-blue);
  font-size: 2rem;
}

/* Unit Toggle Buttons */
.unit-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.toggle-button {
  background: white;
  border: 2px solid var(--border-color);
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toggle-button:hover {
  background: var(--light-gray);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.toggle-button.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(32, 77, 133, 0.3);
}

.toggle-button.active:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* Enhanced Table Wrapper */
.dimensions-table-wrapper {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

/* Enhanced Table Styles */
.enhanced-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  background: white;
}

.enhanced-table thead {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
}

.enhanced-table th {
  padding: 20px 15px;
  font-weight: 600;
  text-align: center;
  border: none;
  font-size: 14px;
  position: relative;
}

.enhanced-table th i {
  margin-right: 8px;
  font-size: 16px;
  color: var(--accent-blue);
}

.enhanced-table td {
  padding: 18px 15px;
  text-align: center;
  border-top: 1px solid #eef2f7;
  font-size: 15px;
  position: relative;
}

.enhanced-table tbody tr {
  background: white;
  transition: all 0.3s ease;
}

.enhanced-table tbody tr:hover {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enhanced-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.enhanced-table tbody tr:nth-child(even):hover {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
}

/* Container Type Styling */
.container-type {
  font-weight: 600;
  color: var(--primary-blue);
  position: relative;
}

.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b1a 0%, #e85f0c 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(39, 127, 245, 0.3);
}

/* Dimension Value Styling */
.dimension-value {
  font-weight: 600;
  color: var(--secondary-blue);
  position: relative;
}

.dimension-unit {
  display: block;
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-top: 3px;
}

/* Highlight Row */
.highlight-row {
  background: linear-gradient(135deg, #fff8f0 0%, #ffeedd 100%) !important;
  border-left: 4px solid var(--accent-orange);
}

.highlight-row:hover {
  background: linear-gradient(135deg, #fff5e6 0%, #ffddcc 100%) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 26, 0.15);
}

.highlight-row .container-type {
  color: var(--accent-orange);
}

/* Info Card */
.info-card {
  background: linear-gradient(135deg, #e8f2ff 0%, #d1e7ff 100%);
  border: 1px solid #c1d9ff;
  border-radius: var(--border-radius-lg);
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(32, 77, 133, 0.1);
}

.info-card h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.info-card h5 i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.info-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Container Dimensions Responsive */
@media (max-width: 992px) {
  .enhanced-container-dimensions {
    padding: 60px 0;
  }
  
  .enhanced-container-dimensions .section-title h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .table-icon {
    font-size: 1.5rem;
  }
  
  .unit-toggle {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .toggle-button {
    width: 200px;
    justify-content: center;
  }
  
  .enhanced-table th,
  .enhanced-table td {
    padding: 15px 10px;
    font-size: 13px;
  }
  
  .enhanced-table th i {
    display: none;
  }
  
  .dimension-unit {
    font-size: 10px;
  }
  
  .popular-badge {
    font-size: 9px;
    padding: 3px 6px;
  }
}

@media (max-width: 768px) {
  .enhanced-container-dimensions {
    padding: 40px 0;
  }
  
  .enhanced-container-dimensions .section-title h2 {
    font-size: 1.8rem;
  }
  
  .enhanced-table th,
  .enhanced-table td {
    padding: 12px 8px;
    font-size: 12px;
  }
  
  .dimension-unit {
    font-size: 9px;
    margin-top: 2px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-card h5 {
    font-size: 1rem;
    flex-direction: column;
    gap: 5px;
  }
  
  .info-card p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .enhanced-container-dimensions {
    padding: 30px 0;
  }
  
  .enhanced-container-dimensions .section-title h2 {
    font-size: 1.5rem;
  }
  
  .table-icon {
    font-size: 1.2rem;
  }
  
  .toggle-button {
    width: 180px;
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .enhanced-table th,
  .enhanced-table td {
    padding: 10px 5px;
    font-size: 11px;
  }
  
  .dimension-unit {
    font-size: 8px;
  }
  
  .popular-badge {
    font-size: 8px;
    padding: 2px 4px;
    margin-left: 5px;
  }
  
  .info-card {
    padding: 15px;
  }
  
  .info-card h5 {
    font-size: 0.9rem;
  }
  
  .info-card p {
    font-size: 13px;
  }
}

/* Dimension Table */
.dimension-table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.table-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.dimension-table th {
  padding: 15px;
  font-weight: 600;
  text-align: center;
  border: none;
}

.dimension-table td {
  padding: 12px 15px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.dimension-table tbody tr {
  background-color: var(--white);
  transition: all 0.3s ease;
}

.dimension-table tbody tr:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

/* Service and Dimension Table Responsive */
@media (max-width: 992px) {
  .service-card,
  .service-image {
    margin-bottom: 1.5rem;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-image img {
    max-height: 350px;
  }
  
  .dimension-table th,
  .dimension-table td {
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }
  
  .service-image img {
    max-height: 300px;
  }
  
  .dimension-table {
    font-size: 14px;
  }
  
  .dimension-table th,
  .dimension-table td {
    padding: 10px 8px;
  }
  
  .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 15px;
  }
  
  .service-image img {
    max-height: 250px;
  }
  
  .dimension-table {
    font-size: 12px;
  }
  
  .dimension-table th,
  .dimension-table td {
    padding: 8px 5px;
  }
}

/* Order Classes for Responsive */
@media (max-width: 991px) {
  .order-lg-1 {
    order: 1 !important;
  }
  
  .order-lg-2 {
    order: 2 !important;
  }
}

/* Contact Section */
.contact .info {
  padding: 30px;
  background: var(--white);
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact .info i {
  font-size: 20px;
  color: var(--primary-blue);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-blue);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info iframe {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
}

/* Contact Form */
.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  padding-bottom: 8px;
  font-size: 14px;
  color: var(--secondary-blue);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: var(--border-radius-sm);
  box-shadow: none;
  font-size: 14px;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s;
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-blue);
  outline: none;
}

.contact .php-email-form button[type="submit"] {
  background: var(--primary-blue);
  border: 0;
  padding: 12px 34px;
  color: var(--white);
  transition: 0.4s;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact .info i {
    float: none;
    margin: 0 auto 15px;
    display: block;
  }
  
  .contact .info h4,
  .contact .info p {
    padding-left: 0;
    text-align: center;
  }
}

/* Animation Loading */
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* AOS (Animate On Scroll) Styles */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f6f9ff 0%, #e8f2ff 100%);
    padding: 0 0 30px 0;
    font-size: 14px;
    color: #333;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #204d85 0%, #209dd8 50%, #204d85 100%);
}

.footer-top {
    background: #fff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 40px 0;
    position: relative;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 45px;
    margin-right: 12px;
}

.footer-logo .company-name {
    font-size: 20px;
    font-weight: 700;
    color: #204d85;
    line-height: 1.2;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #204d85;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #209dd8;
    border-radius: 2px;
}

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

.footer-links li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links i {
    color: #209dd8;
    font-size: 14px;
    margin-right: 8px;
    min-width: 16px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #209dd8;
}

.contact-info {
    background: #f8fbff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e1ecff;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #204d85;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 14px;
    font-weight: 700;
    color: #204d85;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #209dd8;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: #204d85;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #204d85 0%, #209dd8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(32, 77, 133, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(32, 77, 133, 0.3);
    background: linear-gradient(135deg, #209dd8 0%, #204d85 100%);
}

.social-links i {
    font-size: 20px;
}

.newsletter-signup {
    background: linear-gradient(135deg, #204d85 0%, #209dd8 100%);
    border-radius: 12px;
    padding: 25px;
    color: white;
    margin-top: 20px;
}

.newsletter-signup h5 {
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: white;
    color: #204d85;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.certifications {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    background: white;
    border: 2px solid #e1ecff;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #204d85;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    border-color: #209dd8;
    background: #f8fbff;
}

.footer-bottom {
    background: #204d85;
    color: white;
    padding: 25px 0;
}

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

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .footer-section {
        margin-bottom: 35px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px 0;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 10px auto;
    }
}

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